forked from trendmicro-frontend/react-toggle-switch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@trendmicro/react-toggle-switch",
"version": "0.5.2",
"description": "Trend Micro Components: React Toggle Switch",
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"prepublish": "npm run lint && npm test && npm run clean && npm run bowersync && npm run build && npm run build-examples",
"bowersync": "./scripts/bowersync",
"build": "webpack && npm run cleancss",
"build-examples": "cd examples; webpack",
"clean": "rm -f {lib,dist}/*",
"cleancss": "cleancss -o dist/react-toggle-switch.min.css dist/react-toggle-switch.css",
"demo": "http-server -p 8000 docs/",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"test": "./babel-tap --coverage test/*.js",
"coveralls": "./babel-tap --coverage --coverage-report=text-lcov test/*.js | node_modules/.bin/coveralls",
"dev": "cd examples; webpack-dev-server --hot --inline --host 0.0.0.0 --port 8000 --content-base ../docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trendmicro-frontend/react-toggle-switch.git"
},
"author": "Cheton Wu <[email protected]>",
"contributors": [
{
"name": "Cheton Wu",
"email": "[email protected]",
"url": "https://github.com/cheton"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/react-toggle-switch/issues"
},
"homepage": "https://github.com/trendmicro-frontend/react-toggle-switch",
"keywords": [
"react",
"react-toggle-switch"
],
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"@trendmicro/react-anchor": "^0.5.2",
"classnames": "^2.2.5",
"react-addons-shallow-compare": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"@trendmicro/react-buttons": "~1.0.0",
"babel-cli": "~6.23.0",
"babel-core": "~6.23.1",
"babel-eslint": "~7.1.1",
"babel-loader": "~6.3.2",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-preset-es2015": "~6.22.0",
"babel-preset-react": "~6.23.0",
"babel-preset-stage-0": "~6.22.0",
"clean-css": "~4.0.8",
"clean-css-cli": "~4.0.8",
"coveralls": "~2.11.16",
"css-loader": "~0.26.2",
"eslint": "~3.16.1",
"eslint-config-trendmicro": "~0.5.1",
"eslint-loader": "~1.6.3",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-jsx-a11y": "~2.2.3",
"eslint-plugin-react": "~6.10.0",
"extract-text-webpack-plugin": "~2.0.0",
"file-loader": "~0.10.1",
"find-imports": "~0.5.1",
"html-webpack-plugin": "~2.28.0",
"http-server": "~0.9.0",
"nib": "~1.1.2",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"style-loader": "~0.13.2",
"stylint": "~1.5.9",
"stylint-loader": "~1.0.0",
"stylus-loader": "~2.5.0",
"tap": "~10.3.0",
"trendmicro-ui": "~0.3.0",
"url-loader": "~0.5.8",
"webpack": "~2.2.1",
"webpack-dev-server": "~2.4.1"
}
}