-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.97 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
{
"name": "@trendmicro/react-form-control",
"version": "2.0.0",
"description": "React Form Control 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-form-control.min.css dist/react-form-control.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-form-control.git"
},
"author": "Cheton Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/react-form-control/issues"
},
"homepage": "https://github.com/trendmicro-frontend/react-form-control",
"keywords": [
"react",
"react-form-control"
],
"peerDependencies": {
"react": ">=16.3.0"
},
"dependencies": {
"classnames": "^2.2.6",
"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",
"clean-css": "~4.2.1",
"clean-css-cli": "~4.3.0",
"coveralls": "~3.0.5",
"cross-env": "~5.2.0",
"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",
"extract-text-webpack-plugin": "~3.0.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-dom": "~16.8.0",
"react-github-corner": "~2.3.0",
"react-styleguidist": "~9.1.11",
"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",
"trendmicro-ui": "~0.5.2",
"url-loader": "~2.1.0",
"webpack": "~4.36.1",
"webpack-cli": "~3.3.6",
"webpack-dev-server": "~3.7.2"
}
}