-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.76 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
{
"name": "react-combo-modal",
"version": "1.0.5",
"keywords": ["react", "modal", "react-component"],
"description": "React modal component",
"main": "./lib/Modal.jsx",
"scripts": {
"start": "./node_modules/.bin/webpack-dev-server --config webpack.config.js --hot --progress --colors --port 8081 --open",
"test": "mocha --compilers js:babel-core/register --require ./test/test.js \"test/**/*@(.js|.jsx)\"",
"prepublish": "rm -rf ./lib && mkdir lib && ./node_modules/.bin/babel Components/Modal.jsx --out-file lib/Modal.jsx && ./node_modules/.bin/babel lib/Modal.jsx",
"postpublish": "rm -rf ./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gogoair/react-combo-modal.git"
},
"author": "Marko Kostovski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gogoair/react-combo-select/issues"
},
"homepage": "https://github.com/gogoair/react-combo-modal#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": "^4.1.2",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"eslint": "^3.19.0",
"eslint-plugin-react": "^6.10.3",
"jsdom": "^11.5.1",
"mocha": "^4.0.1",
"react-hot-loader": "^3.0.0-beta.7",
"sinon": "^4.1.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.4"
},
"peerDependencies": {
"react": ">15.1.0",
"react-dom": ">15.1.0"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}