-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
48 lines (47 loc) · 1.16 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": "vue-karma-test",
"version": "1.0.0",
"description": "karma+webpack搭建的vue单元测试环境",
"main": "src/index.js",
"scripts": {
"test": "karma start",
"start": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarxJiao/vue-karma-test.git"
},
"keywords": [
"karma",
"vuetest",
"unit"
],
"author": "MarxJiao",
"license": "ISC",
"bugs": {
"url": "https://github.com/MarxJiao/vue-karma-test/issues"
},
"homepage": "https://github.com/MarxJiao/vue-karma-test#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.26.1",
"html-webpack-plugin": "^2.26.0",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-webpack": "^1.8.1",
"vue-loader": "^10.0.2",
"vue-template-compiler": "^2.1.8",
"webpack": "^1.14.0",
"webpack-dev-server": "^3.1.11"
},
"dependencies": {
"vue": "^2.1.8"
}
}