-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "minivue",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"serve": "webpack-dev-server",
"build": "webpack --config webpack.config.js",
"test": "jest",
"test:w": "jest --watch",
"test:c": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhukunpenglinyutong/miniVue.git"
},
"author": "Zhu Kunpeng <[email protected]> (itzkp.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/zhukunpenglinyutong/miniVue/issues"
},
"homepage": "https://github.com/zhukunpenglinyutong/miniVue#readme",
"devDependencies": {
"clean-webpack-plugin": "^3.0.0",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
},
"dependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"babel-jest": "^24.8.0"
}
}