-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.78 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
{
"name": "@trendmicro/react-loader",
"version": "0.6.1",
"description": "Trend Micro Components: React Loader",
"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-loader.min.css dist/react-loader.css",
"demo": "http-server -p 8000 docs/",
"lint": "eslint ./src",
"lint: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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trendmicro-frontend/react-loader.git"
},
"author": "Tina C Lin",
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/react-loader/issues"
},
"homepage": "https://github.com/trendmicro-frontend/react-loader",
"keywords": [
"loader",
"react",
"react-loader"
],
"peerDependencies": {
"react": "^0.14.0 || >=15.0.0"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.10"
},
"devDependencies": {
"@trendmicro/react-buttons": "~1.1.0",
"babel-cli": "~6.24.1",
"babel-core": "~6.25.0",
"babel-eslint": "~7.2.3",
"babel-loader": "~7.1.1",
"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.5",
"clean-css-cli": "~4.1.6",
"coveralls": "~2.13.1",
"css-loader": "~0.28.4",
"eslint": "~3.19.0",
"eslint-config-trendmicro": "~0.5.1",
"eslint-loader": "~1.8.0",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-jsx-a11y": "~2.2.3",
"eslint-plugin-react": "~6.10.0",
"extract-text-webpack-plugin": "~2.1.2",
"file-loader": "~0.11.2",
"find-imports": "~0.5.2",
"html-webpack-plugin": "~2.29.0",
"http-server": "~0.10.0",
"nib": "~1.1.2",
"react": "^0.14.0 || >=15.0.0",
"react-dom": "^0.14.0 || >=15.0.0",
"style-loader": "~0.18.2",
"stylint": "~1.5.9",
"stylint-loader": "~1.0.0",
"stylus-loader": "~3.0.1",
"tap": "~10.7.0",
"trendmicro-ui": "~0.4.4",
"url-loader": "~0.5.9",
"webpack": "~2.4.1",
"webpack-dev-server": "~2.5.0"
}
}