forked from tjw-lint/jest-serializer-vue-tjw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.42 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
{
"name": "jest-serializer-vue-tjw",
"description": "A superb jest serializer for Vue snapshots",
"version": "3.19.0",
"main": "index.js",
"scripts": {
"lint": "eslint --ext .js,.vue .",
"fix": "npm run lint -- --fix",
"test": "jest --runInBand --coverage",
"test-debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand -t \"ObjectAttribute\"",
"validate": "npm run lint && npm test",
"remote": "git remote rm eddyerburgh && git remote",
"travis": "npm run lint && npm run coverage && jest --runInBand"
},
"ManifestComments": [
"Pinned jest to 24.9.0. 25.1.0 is broken on Windows. Waiting for issue #9459 to be resolved.",
"Pinned babel-jest to 26.6.3 because 27+ breaks if jest is on 24.9.0",
"Pinned vue-good-table to 2.21.0. 2.21.1+ no longer use scoped styles, which is why we pulled it in to test 3rd party scoped libraries."
],
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"htmlparser2": "^7.1.1",
"js-beautify": "^1.14.0",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@vue/test-utils": "^1.0.0-beta.33",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "26.6.3",
"eslint": "^7.32.0",
"eslint-config-tjw-base": "^1.0.0",
"eslint-config-tjw-jest": "^1.0.0",
"eslint-config-tjw-vue": "^2.0.2",
"eslint-plugin-jsdoc": "^36.0.8",
"eslint-plugin-vue": "^7.17.0",
"jest": "24.9.0",
"vue": "^2.6.14",
"vue-good-table": "2.21.0",
"vue-jest": "^3.0.7",
"vue-template-compiler": "^2.6.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjw-lint/jest-serializer-vue-tjw.git"
},
"keywords": [
"jest",
"serializer",
"vue"
],
"author": "The Jared Wilcurt",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjw-lint/jest-serializer-vue-tjw/issues"
},
"homepage": "https://github.com/tjw-lint/jest-serializer-vue-tjw#readme",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=8.3.0",
"npm": ">=5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"setupFilesAfterEnv": [
"<rootDir>/tests/setup.js"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.vue$": "<rootDir>/node_modules/vue-jest"
},
"snapshotSerializers": [
"<rootDir>/index.js"
]
}
}