-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 2.05 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
{
"name": "react-collapsy",
"version": "0.0.10",
"keywords": [
"react",
"accordion",
"collapsable",
"collapsible"
],
"description": "React simple accordion collapsable component",
"main": "./lib/index.jsx",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.js --hot --progress --colors --port 8081 --open",
"test": "mocha --require babel-core/register --require ./src/test/testInitialization.js \"src/test/**/*@(.test.js|.test.jsx)\"",
"prepare": "rm -rf ./lib && mkdir lib && cp ./src/styles/index.css ./lib && cp ./src/styles/arrow-row-expand-down-ico-white.svg ./lib && ./node_modules/.bin/babel src/index.jsx --out-file lib/index.jsx && ./node_modules/.bin/babel lib/index.jsx",
"postpublish": "rm -rf ./lib",
"precommit": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gogoair/react-collapsy.git"
},
"author": "Nikola Ravic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gogoair/react-collapsy/issues"
},
"homepage": "https://github.com/gogoair/react-collapsy/#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-immutable": "^1.5.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^11.5.1",
"jsdom-global": "^3.0.2",
"mocha": "^4.0.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"sinon": "^1.17.4",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4"
},
"dependencies": {
"prop-types": "^15.6.0"
},
"peerDependencies": {
"react": ">15.6.1",
"react-dom": ">15.6.1"
}
}