forked from trendmicro-frontend/trendmicro-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.38 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
{
"name": "trendmicro-ui",
"version": "0.3.0",
"description": "CSS styles for creating a user interface according to Trend Micro UI style guides.",
"files": [
"dist"
],
"scripts": {
"prepublish": "npm run lint && npm test && npm run clean && npm run bowersync && npm run build && npm run release",
"bowersync": "./scripts/bowersync",
"build": "npm run build-css; npm run build-fonts; npm run build-examples",
"build-css": "mkdir -p dist/css && npm run stylus -- -o dist/css/trendmicro-ui.css src/index.styl && npm run stylus -- -c -o dist/css/trendmicro-ui.min.css src/index.styl && ./prepend-banner dist/css/*.css",
"build-fonts": "mkdir -p dist/fonts && cp -af fonts/* dist/fonts",
"build-examples": "cd examples; webpack",
"release": "rm -rf releases; mkdir -p releases/css; mkdir -p releases/fonts; cp -af dist/css/trendmicro-ui.css releases/css/trendmicro-ui-${npm_package_version}.css; cp -af dist/css/trendmicro-ui.min.css releases/css/trendmicro-ui-${npm_package_version}.min.css; cp -af dist/fonts/* releases/fonts/; cd releases; zip -r trendmicro-ui-${npm_package_version}.zip css fonts; rm -rf css fonts",
"clean": "rm -f lib/*",
"demo": "http-server -p 8000 docs/",
"lint": "npm run eslint && npm run stylint",
"eslint": "eslint examples",
"stylint": "stylint src",
"stylus": "stylus -u nib --import node_modules/nib/lib/nib/index.styl",
"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/trendmicro-ui.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/trendmicro-ui/issues"
},
"homepage": "https://github.com/trendmicro-frontend/trendmicro-ui",
"keywords": [
"trendmicro",
"ui",
"css",
"style",
"guides",
"typography"
],
"dependencies": {},
"devDependencies": {
"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.3",
"clean-css-cli": "~4.0.0",
"coveralls": "~2.11.15",
"css-loader": "~0.26.1",
"eslint": "~3.15.0",
"eslint-config-trendmicro": "~0.5.1",
"eslint-loader": "~1.6.1",
"eslint-plugin-import": "~2.2.0",
"eslint-plugin-jsx-a11y": "~2.2.3",
"eslint-plugin-react": "~6.10.0",
"file-loader": "~0.10.0",
"html-webpack-plugin": "~2.28.0",
"http-server": "~0.9.0",
"minimist": "~1.2.0",
"nib": "~1.1.2",
"prepend-file": "~1.3.1",
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0",
"style-loader": "~0.13.1",
"stylint": "~1.5.9",
"stylint-loader": "~1.0.0",
"stylus-loader": "~2.4.0",
"tap": "~10.1.1",
"trendmicro-ui": "~0.2.0",
"url-loader": "~0.5.7",
"webpack": "~2.2.1",
"webpack-dev-server": "~2.3.0"
}
}