-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
78 lines (78 loc) · 1.96 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "react-accordion-with-header",
"author": "Jake Foraker <[email protected]> (https://github.com/jforaker)",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "git+https://github.com/jforaker/react-accordion-with-header.git"
},
"description": "React accordion component with flexbox header",
"homepage": "https://react-accordion-with-header.now.sh/",
"license": "MIT",
"keywords": [
"react",
"reactjs",
"react-component",
"react-accordion",
"accordion",
"flex-box",
"flex",
"widget"
],
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"es",
"lib",
"umd"
],
"scripts": {
"lint": "node_modules/.bin/eslint src tools scripts",
"lint:watch": "npm run lint -- --watch",
"deploy-demo": "now demo/dist --public && now alias",
"build": "nwb build-react-component && cp now.json demo/dist",
"clean": "nwb clean-module && nwb clean-demo",
"start": "nwb serve-react-demo --copy-files",
"test": "jest"
},
"dependencies": {
"classnames": "^2.2.6"
},
"peerDependencies": {
"react": "16.x"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "^4.1.2",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^23.4.1",
"nwb": "0.21.x",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-skycons": "^0.7.0",
"react-test-renderer": "^16.4.1",
"regenerator-runtime": "^0.12.0"
},
"babel": {
"presets": [
"env",
"react"
],
"env": {
"test": {
"plugins": [
"transform-es2015-modules-commonjs",
"transform-class-properties"
]
}
}
}
}