-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
95 lines (95 loc) · 2.99 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
{
"name": "@trendmicro/react-modal",
"version": "3.1.0",
"description": "React Modal component",
"main": "lib/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"prepublish": "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-modal.min.css dist/react-modal.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-modal.git"
},
"author": "Cheton Wu",
"license": "MIT",
"bugs": {
"url": "https://github.com/trendmicro-frontend/react-modal/issues"
},
"homepage": "https://github.com/trendmicro-frontend/react-modal",
"keywords": [
"react-modal",
"react",
"modal",
"portal"
],
"peerDependencies": {
"react": ">=16.3.0"
},
"dependencies": {
"@trendmicro/react-portal": "^1.0.1",
"classnames": "^2.2.5",
"prop-types": "^15.6.0"
},
"devDependencies": {
"@babel/cli": "~7.2.3",
"@babel/core": "~7.2.2",
"@babel/polyfill": "~7.2.3",
"@babel/preset-env": "~7.2.3",
"@babel/preset-react": "~7.0.0",
"@babel/register": "~7.0.0",
"@trendmicro/babel-config": "~1.0.0-alpha",
"@trendmicro/react-buttons": "~1.3.1",
"babel-eslint": "~10.0.1",
"babel-loader": "~8.0.4",
"chained-function": "~0.5.0",
"clean-css": "~4.2.1",
"clean-css-cli": "~4.2.1",
"coveralls": "~3.0.2",
"css-loader": "~2.1.0",
"enzyme": "~3.8.0",
"enzyme-adapter-react-16": "~1.7.1",
"eslint": "~5.11.1",
"eslint-config-trendmicro": "~1.4.1",
"eslint-loader": "~2.1.1",
"eslint-plugin-import": "~2.14.0",
"eslint-plugin-jsx-a11y": "~6.1.2",
"eslint-plugin-react": "~7.12.0",
"file-loader": "~3.0.1",
"find-imports": "^1.1.0",
"html-webpack-plugin": "~3.2.0",
"http-server": "~0.11.1",
"jsdom": "^13.1.0",
"mini-css-extract-plugin": "~0.5.0",
"nib": "~1.1.2",
"react": ">=16.3.0",
"react-dom": ">=16.3.0",
"react-styleguidist": "~8.0.6",
"resize-observer-polyfill": "~1.5.1",
"style-loader": "~0.23.1",
"styled-components": "~4.1.3",
"stylint": "~1.5.9",
"stylus-loader": "~3.0.2",
"tap": "~12.1.1",
"url-loader": "~1.1.2",
"webpack": "~4.28.1",
"webpack-cli": "~3.1.2",
"webpack-dev-server": "~3.1.10",
"which": "~1.3.1"
}
}