-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
66 lines (66 loc) · 1.91 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
{
"name": "vue-unit",
"version": "0.2.2",
"description": "Component testing utilities for Vue.js",
"main": "build",
"scripts": {
"build": "NODE_ENV=production babel src --out-dir build",
"test": "NODE_ENV=test karma start test/karma.conf.js --single-run",
"lint": "eslint --format 'node_modules/eslint-friendly-formatter' --ext .js,.vue src test/specs"
},
"keywords": [
"vue",
"vue-unit"
],
"author": "William Seward <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wrseward/vue-unit/issues"
},
"homepage": "https://github.com/wrseward/vue-unit#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-istanbul": "^3.0.0",
"babel-plugin-transform-object-rest-spread": "^6.20.2",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.20.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"css-loader": "^0.26.1",
"eslint": "^3.12.2",
"eslint-config-vue": "^2.0.1",
"eslint-friendly-formatter": "^2.0.6",
"eslint-plugin-vue": "^1.0.0",
"jquery": "^3.1.1",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-jquery-chai": "^0.1.3",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-sinon-chai": "^1.2.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.26",
"karma-webpack": "^1.8.1",
"mocha": "^3.2.0",
"phantomjs-prebuilt": "^2.1.14",
"sinon-chai": "^2.8.0",
"vue": "2.*",
"vue-loader": "^10.0.2",
"vue-template-compiler": "^2.1.8",
"vuex": "^2.3.1",
"webpack": "beta"
},
"peerDependencies": {
"vue": "2.*"
},
"dependencies": {
"lodash.kebabcase": "^4.1.1",
"sinon": "^2.1.0"
}
}