-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.45 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.45 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@trendmicro/react-grid-system",
"version": "1.1.0",
"description": "React Grid System component",
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"prepare": "npm run lint && npm test && npm run clean && npm run build && npm run styleguide:build",
"build": "webpack-cli && npm run cleancss",
"clean": "rm -f {lib,dist}/*",
"cleancss": "cleancss -o dist/react-grid-system.min.css dist/react-grid-system.css",
"demo": "http-server -p 8000 docs/",
"lint": "npm run eslint && npm run stylint",
"eslint": "eslint --ext .js --ext .jsx *.js src test",
"stylint": "stylint 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": "npm run styleguide",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trendmicro-frontend/react-grid-system.git"
},
"author": "Cheton Wu <cheton_wu@trend.com.tw>",
"contributors": [
{
"name": "Cheton Wu",
"email": "cheton_wu@trend.com.tw",
"url": "https://github.com/trendmicro-frontend"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/react-grid-system/issues"
},
"homepage": "https://github.com/trendmicro-frontend/react-grid-system",
"keywords": [
"react",
"grid-system",
"responsive",
"grid",
"layout",
"container",
"fluid",
"row",
"col",
"float",
"flex",
"flexbox"
],
"peerDependencies": {
"react": ">=16.3.0"
},
"dependencies": {
"classnames": "^2.2.5",
"ensure-array": "^1.0.0",
"lodash.isequal": "^4.0.0",
"lodash.throttle": "^4.0.0",
"micro-memoize": "^4.0.8",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@babel/cli": "~7.5.5",
"@babel/core": "~7.5.5",
"@babel/polyfill": "~7.4.4",
"@babel/preset-env": "~7.5.5",
"@babel/preset-react": "~7.0.0",
"@babel/register": "~7.5.5",
"@trendmicro/babel-config": "~1.0.0-alpha",
"babel-eslint": "~10.0.2",
"babel-loader": "~8.0.6",
"chained-function": "~0.5.0",
"clean-css": "~4.2.1",
"clean-css-cli": "~4.3.0",
"coveralls": "~3.0.5",
"css-loader": "~3.1.0",
"enzyme": "~3.10.0",
"enzyme-adapter-react-16": "~1.14.0",
"eslint": "~6.0.1",
"eslint-config-trendmicro": "~1.4.1",
"eslint-loader": "~2.2.1",
"eslint-plugin-import": "~2.18.1",
"eslint-plugin-jsx-a11y": "~6.2.3",
"eslint-plugin-react": "~7.14.2",
"file-loader": "~4.1.0",
"find-imports": "^1.1.0",
"html-webpack-plugin": "~3.2.0",
"http-server": "~0.11.1",
"jsdom": "^15.1.1",
"mini-css-extract-plugin": "~0.8.0",
"react": "~16.8.0",
"react-bootstrap-buttons": "~0.5.0",
"react-dom": "~16.8.0",
"react-github-corner": "~2.3.0",
"react-styleguidist": "~9.0.4",
"redux": "~4.0.4",
"resize-observer-polyfill": "~1.5.1",
"style-loader": "~0.23.1",
"styled-components": "~4.3.2",
"stylint": "~2.0.0",
"stylus": "~0.54.5",
"stylus-loader": "~3.0.2",
"tap": "~14.4.2",
"url-loader": "~2.1.0",
"webpack": "~4.36.1",
"webpack-cli": "~3.3.6",
"webpack-dev-server": "~3.7.2",
"which": "~1.3.1"
}
}