-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "react-slide-out",
"version": "0.1.4",
"keywords": [
"react",
"slider",
"modal",
"drawer",
"simple",
"lightweight",
"small size"
],
"description": "React simple slider",
"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 ./test/testInitialization.js \"test/**/*@(.test.js|.test.jsx)\"",
"prepublish": "npm test && rm -rf ./lib && mkdir lib && cp ./src/index.css ./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-slide-out.git"
},
"author": "Nikola Ravic <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gogoair/react-slide-out/issues"
},
"homepage": "https://github.com/gogoair/react-slide-out/#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",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"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"
}
}