-
Notifications
You must be signed in to change notification settings - Fork 111
/
Copy pathpackage.json
66 lines (66 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
66
{
"name": "@testing-library/vue",
"version": "1.0.0",
"description": "Simple and complete Vue DOM testing utilities that encourage good testing practices.",
"main": "dist/vue-testing-library.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",
"prepublishOnly": "babel src --out-dir dist"
},
"files": [
"dist",
"cleanup-after-each.js"
],
"repository": {
"type": "git",
"url": "https://github.com/testing-library/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": {
"@testing-library/dom": "^5.0.1",
"@vue/test-utils": "^1.0.0-beta.29",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"axios": "^0.19.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.8.0",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"jest": "^24.8.0",
"jest-dom": "^3.4.0",
"jest-in-case": "^1.0.2",
"jest-serializer-vue": "^2.0.2",
"vee-validate": "^2.2.9",
"vue-jest": "^3.0.4",
"vue-router": "^3.0.6",
"vuex": "^3.1.1"
}
}