-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "js-wheels",
"version": "3.1.2",
"description": "0.0.1",
"main": "dist/js-wheels.min.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --config build/webpack.dev.js",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js"
},
"husky": {
"hooks": {
"pre-push": "npm run build"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/BiYuqi/js-wheels.git"
},
"files": [
"dist"
],
"author": "Biyuqi",
"license": "MIT",
"bugs": {
"url": "https://github.com/BiYuqi/js-wheels/issues"
},
"homepage": "https://github.com/BiYuqi/js-wheels/blob/master/README.md",
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/plugin-transform-modules-commonjs": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"babel-loader": "^8.0.6",
"cross-env": "^5.2.0",
"clean-webpack-plugin": "^0.1.19",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1"
},
"dependencies": {}
}