-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·96 lines (96 loc) · 3.15 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
92
93
94
95
96
{
"name": "@trendmicro/react-buttons",
"version": "1.3.1",
"description": "Trend Micro Components: React Buttons",
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"prepublish": "npm run eslint && npm test && npm run clean && npm run bowersync && npm run build && npm run styleguide:build",
"bowersync": "./scripts/bowersync",
"build": "webpack && npm run cleancss",
"build-examples": "cd examples; webpack",
"clean": "rm -rf {lib,dist,docs}/*",
"cleancss": "cleancss -o dist/react-buttons.min.css dist/react-buttons.css",
"demo": "http-server -p 8000 docs/",
"eslint": "eslint ./src",
"eslint:fix": "eslint --fix ./src",
"test": "tap test/*.js --node-arg=--require --node-arg=babel-register --node-arg=--require --node-arg=babel-polyfill",
"coveralls": "tap test/*.js --coverage --coverage-report=text-lcov --nyc-arg=--require --nyc-arg=babel-register --nyc-arg=--require --nyc-arg=babel-polyfill | coveralls",
"dev": "cd examples; webpack-dev-server --hot --inline --host 0.0.0.0 --port 8000 --content-base ../docs",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trendmicro-frontend/react-buttons.git"
},
"author": "Tina C Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/react-buttons/issues"
},
"homepage": "https://github.com/trendmicro-frontend/react-buttons",
"keywords": [
"react",
"react-component",
"button",
"buttons",
"dropdown"
],
"peerDependencies": {
"react": "^0.14.0 || >=15.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8"
},
"devDependencies": {
"@trendmicro/react-anchor": "~0.5.6",
"@trendmicro/react-loader": "~0.6.1",
"babel-cli": "~6.26.0",
"babel-core": "~6.26.0",
"babel-eslint": "~8.1.2",
"babel-loader": "~7.1.2",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-preset-es2015": "~6.24.1",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"clean-css": "~4.1.9",
"clean-css-cli": "~4.1.10",
"coveralls": "~3.0.0",
"css-loader": "~0.28.0",
"enzyme": "~3.6.0",
"enzyme-adapter-react-16": "~1.5.0",
"eslint": "~4.14.0",
"eslint-config-trendmicro": "~1.3.0",
"eslint-loader": "~1.9.0",
"eslint-plugin-import": "~2.8.0",
"eslint-plugin-jsx-a11y": "~6.0.3",
"eslint-plugin-react": "~7.5.1",
"extract-text-webpack-plugin": "~3.0.2",
"file-loader": "~1.1.6",
"find-imports": "~0.5.1",
"font-awesome": "4.7.0",
"html-webpack-plugin": "~2.30.1",
"http-server": "~0.10.0",
"jsdom": "~11.5.1",
"nib": "~1.1.2",
"path": "^0.12.7",
"react": "^0.14.0 || >=15.0.0",
"react-dom": "^0.14.0 || >=15.0.0",
"react-styleguidist": "^7.3.6",
"style-loader": "~0.19.1",
"stylint": "~1.5.9",
"stylint-loader": "~1.0.0",
"stylus-loader": "~3.0.1",
"tap": "~11.0.1",
"trendmicro-ui": "~0.5.1",
"url-loader": "~0.6.2",
"webpack": "~3.10.0",
"webpack-dev-server": "~2.9.7",
"which": "~1.3.0"
}
}