-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
58 lines (58 loc) · 1.48 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
{
"name": "react-flexible-switch",
"version": "1.2.1",
"description": "Simple and flexible React Switch",
"main": "lib/Switch.js",
"author": "Netto Farah",
"homepage": "https://github.com/nettofarah/react-flexible-switch",
"repository": {
"type": "git",
"url": "https://github.com/nettofarah/react-flexible-switch.git"
},
"bugs": {
"url": "https://github.com/nettofarah/react-flexible-switch/issues"
},
"dependencies": {
"classnames": "^2.1.2",
"prop-types": "^15.6.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"branchsite": "^4.0.2",
"jsdom": "^8.4.0",
"mocha": "^2.4.5",
"np": "^2.17.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"peerDependencies": {
"react": "^0.14 || ^15.0.0-rc || ^15.0 || ^16.0",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0 || ^16.0"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "babel src -d lib",
"test":
"NODE_ENV=test mocha --compilers js:babel-register --require ./test/helpers/fakeDom.js",
"dev": "webpack-dev-server",
"build-example": "webpack",
"release": "np --yolo"
},
"keywords": [
"react",
"react-component",
"switch",
"toggle",
"react-switch",
"react-toggle"
],
"files": ["lib", "src"]
}