-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.92 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.92 KB
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
{
"name": "react-bootstrap-toggle",
"version": "2.3.2",
"description": "A React version of the bootstrap-toggle without the JQuery dependency",
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "arnthor3/react-bootstrap-toggle"
},
"scripts": {
"prepublish": "npm run build && cp src/bootstrap2-toggle.css dist",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"start": "webpack-dev-server --inline --hot",
"coveralls": "jest --coverage | coveralls",
"build": "babel src -d dist",
"uglify": "uglifyjs-folder js -eo dist"
},
"keywords": [
"react bootstrap bootstrap-switcher"
],
"author": "arnthor",
"license": "ISC",
"devDependencies": {
"@types/react": "^16.8.24",
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-runtime": "^6.23.0",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-loader": "^1.6.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.7.1",
"jest": "^17.0.3",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.6",
"react-test-renderer": "^16.0.0",
"sinon": "^1.17.6",
"style-loader": "^0.19.0",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10",
"resize-observer-polyfill": "^1.5.0"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-dom": ">=15.0.0"
},
"types": "types/index.d.ts"
}