-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.68 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
{
"name": "@cloudbees/jest-acceptance",
"version": "0.0.8",
"main": "dist/vue-tester",
"description": "A strategy for getting close to user acceptance quality testing, without the overhead of full browser automation.",
"license": "MIT",
"scripts": {
"lint": "eslint 'lib/**/*.ts'",
"test": "jest",
"build": "tsc",
"clean": "rm -rf ./dist"
},
"keywords": [
"vue",
"testing",
"acceptance testing",
"integration testing",
"diff",
"jest"
],
"author": "Jonathan Johnson <me@jondavidjohn.com> (https://jondavidjohn.com/)",
"dependencies": {
"jest-serializer-vue": "^2.0.2",
"snapshot-diff-serializer": "^1.0.0",
"vue-template-compiler": "~2.6.14"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"@vue/test-utils": "1.3.6",
"@vue/vue2-jest": "29.2.6",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^4.1.6",
"vue": "~2.6.14"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"vue"
],
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
],
".*\\.(vue)$": "@vue/vue2-jest"
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
],
"collectCoverageFrom": [
"lib/**/*.ts",
"!lib/**/*.d.ts"
],
"snapshotSerializers": [
"./lib/serializer.ts"
]
}
}