forked from springload/react-accessible-accordion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.49 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-accessible-accordion",
"version": "0.4.0",
"description": "Accessible Accordion component for React",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coverage:watch": "jest --coverage --watch",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint",
"js": "babel -d dist src",
"js:watch": "npm run js -- --watch",
"css": "cp src/react-accessible-accordion.css dist",
"build": "npm run js -s && npm run css -s",
"start": "npm run js:watch",
"start-demo": "webpack-dev-server --config ./webpack/webpack.config.demo.js",
"pages": "rm -rf pages && cp -R demo pages && webpack --config=./webpack/webpack.config.pages.js",
"deploy": "npm run pages && ./bin/deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/springload/react-accessible-accordion.git"
},
"babel": {
"presets": [
"es2015",
"react"
]
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"keywords": [
"react",
"component",
"accordion",
"collapse",
"accessible",
"accessibility"
],
"authors": [
"Vincent Audebert <[email protected]>"
],
"contributors": [
{
"name": "Samantha Sanders"
},
{
"name": "Thibaud Colas"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/springload/react-accessible-accordion/issues"
},
"homepage": "https://github.com/springload/react-accessible-accordion#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"coveralls": "^2.12.0",
"css-loader": "^0.27.3",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"jest": "^19.0.2",
"prop-types": "^15.5.10",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"style-loader": "^0.16.1",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"classnames": "^2.2.5",
"uuid": "^3.0.1"
},
"peerDependencies": {
"react": "^15.4.0 || ^16.0.0",
"react-dom": "^15.4.0 || ^16.0.0",
"prop-types": "^15.5.10 || ^16.0.0"
}
}