-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
69 lines (69 loc) · 2.04 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
{
"name": "react-toggle",
"version": "4.1.3",
"description": "An elegant, accessible toggle component for React. Also a glorified checkbox.",
"main": "dist/component/index.js",
"style": "src/style.css",
"scripts": {
"prepublish": "npm run build && cp -rv dist/docs/* docs/",
"build-component": "babel src/component --out-dir dist/component",
"build-docs": "webpack",
"build": "npm run build-component && npm run build-docs",
"test": "nyc mocha --require babel-register --require spec/setup.js spec/**/*.spec.js",
"lint": "eslint .; exit 0",
"dev": "webpack-dev-server"
},
"keywords": [
"toggle",
"component",
"react",
"react-component"
],
"author": "Aaron Shafovaloff <[email protected]>",
"homepage": "https://github.com/aaronshaf/react-toggle",
"repository": {
"type": "git",
"url": "[email protected]:aaronshaf/react-toggle.git"
},
"bugs": {
"url": "https://github.com/aaronshaf/react-toggle/issues"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.25.0",
"enzyme": "^2.4.1",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.1",
"jsdom": "^9.6.0",
"mocha": "^3.1.2",
"nyc": "^11.0.2",
"prop-types": "^15.3.0",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.0"
},
"dependencies": {
"classnames": "^2.2.5"
},
"peerDependencies": {
"prop-types": ">= 15.3.0 < 19",
"react": ">= 15.3.0 < 19",
"react-dom": ">= 15.3.0 < 19"
}
}