-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "react-panelgroup",
"version": "1.0.12",
"description": "react-panelgroup React component",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && npm clean-demo",
"start": "nwb serve-react-demo",
"test": "npm run lint && nwb test",
"test:coverage": "nwb test --coverage",
"test:watch": "nwb test --server",
"deploy": "gh-pages -d demo/dist",
"lint": "eslint --quiet ./**/*.js"
},
"dependencies": {
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": "16.x || 15.x"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"gh-pages": "^0.11.0",
"nwb": "0.22.x",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"author": "Dan Fessler",
"homepage": "http://www.DanFessler.com",
"license": "MIT",
"repository": "https://github.com/DanFessler/react-panelgroup",
"keywords": [
"react-component"
]
}