-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "@xing.he/react-hollow-mask",
"version": "0.0.1",
"description": "An guide layer based on react.",
"main": "lib/index.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint ./src",
"build:dev": "webpack --env development",
"build:prod": "webpack --env production",
"rm": "rm -rf ./lib",
"cp": "cp src/index.min.js ./lib",
"build": "npm run rm && npm run build:dev && npm run build:prod && npm run cp"
},
"keywords": [
"hollow-mask",
"guide-layer"
],
"author": "xing.he",
"license": "MIT",
"peerDependencies": {
"classnames": ">=2.0.0",
"react": ">=16.3.0",
"react-dom": ">=16.3.0",
"prop-types": ">=15.0.0"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"colors": "^1.3.3",
"css-loader": "^3.2.0",
"eslint": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"style-loader": "^1.0.0",
"webpack": "^4.39.3",
"webpack-cli": "^3.3.7",
"webpack-merge": "^4.2.2",
"webpack-progress-bar": "^1.0.6"
}
}