-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
65 lines (65 loc) · 1.82 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
{
"name": "vue-testing-library",
"version": "0.13.0",
"description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.",
"main": "npm/index.js",
"scripts": {
"lint": "eslint --ext .js,.vue .",
"lint:fix": "eslint --ext .js,.vue . --fix",
"test": "jest --coverage",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"version": "babel src --out-dir npm"
},
"files": [
"npm"
],
"repository": {
"type": "git",
"url": "https://github.com/dfcook/vue-testing-library"
},
"keywords": [
"vue.js",
"vue.js testing",
"vue",
"vue testing",
"vue.js 2",
"vue.js 2 testing",
"vue 2",
"vue 2 testing"
],
"author": "Daniel Cook",
"license": "MIT",
"dependencies": {
"@vue/test-utils": "^1.0.0-beta.27",
"dom-testing-library": "^3.16.1",
"vue": "^2.5.21",
"vue-template-compiler": "^2.5.21"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"axios": "^0.18.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"coveralls": "^3.0.2",
"eslint": "^5.11.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"jest": "^23.6.0",
"jest-dom": "^3.0.0",
"jest-in-case": "^1.0.2",
"jest-serializer-vue": "^2.0.2",
"vee-validate": "^2.1.4",
"vue-jest": "^3.0.2",
"vue-router": "^3.0.2",
"vuex": "^3.0.1"
}
}