-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "jest-matcher-vue-test-utils",
"version": "3.0.0-3",
"description": "Jest matchers to test Vue components easily",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c rollup.config.ts",
"test": "jest",
"test:watch": "jest --watch -o",
"pretest": "rm -rf dist/ && npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hmsk/jest-matcher-vue-test-utils.git"
},
"keywords": [
"vue",
"test",
"jest",
"matcher"
],
"author": "Kengo Hamasaki <k.hamasaki@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmsk/jest-matcher-vue-test-utils/issues"
},
"homepage": "https://github.com/hmsk/jest-matcher-vue-test-utils#readme",
"dependencies": {
"expect": ">=23.0",
"jest-diff": ">=23.0"
},
"devDependencies": {
"@types/jest": "26.0.23",
"@vue/test-utils": "1.2.0",
"babel-core": "7.0.0-bridge.0",
"jest": "26.6.3",
"jest-util": "26.6.2",
"rollup": "2.51.1",
"rollup-plugin-cleanup": "3.2.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.30.0",
"ts-jest": "26.5.6",
"typescript": "4.3.2",
"vue": "2.6.14",
"vue-jest": "3.0.7",
"vue-template-compiler": "2.6.14",
"vuex": "3.6.2"
},
"peerDependencies": {
"@vue/test-utils": "^1.0.0",
"jest": ">=23.0"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "./test/tsconfig.json"
},
"vue-jest": {
"babelConfig": false
}
},
"moduleFileExtensions": [
"js",
"ts",
"vue"
],
"transform": {
"^.+\\.vue$": "vue-jest",
"^.+\\.tsx?$": "ts-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"testMatch": [
"**/test/**/*.test.ts"
],
"testURL": "http://localhost/",
"preset": "ts-jest"
}
}