forked from vire/jest-vue-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.44 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
87
88
89
90
91
92
93
94
95
96
{
"name": "jest-vue-preprocessor",
"version": "1.1.0",
"description": "Preprocessor that allows importing of .vue files in jest tests",
"main": "index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vire/jest-vue-preprocessor.git"
},
"bugs": {
"url": "https://github.com/vire/jest-vue-preprocessor/issues"
},
"author": "Viliam Elischer <[email protected]>",
"engines": {
"node": ">= 6.3"
},
"keywords": [
"jest",
"vue",
"test",
"preprocessor",
"transform"
],
"dependencies": {
"babel-plugin-transform-runtime": "6.23.0",
"find-babel-config": "1.1.0",
"typescript": "2.4.2",
"vue-property-decorator": "5.1.1"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-es2015": "6.24.1",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "4.4.1",
"husky": "0.14.3",
"jest": "20.0.4",
"lint-staged": "4.0.3",
"prettier": "1.5.3",
"pug": "2.0.0-rc.3",
"semantic-release": "6.3.6",
"validate-commit-msg": "2.14.0",
"vue": "2.4.2",
"vue-template-compiler": "2.4.2",
"vue-template-es2015-compiler": "1.5.3"
},
"scripts": {
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"prepush": "npm run verify",
"precommit": "lint-staged",
"prettier": "prettier --single-quote --print-width 120 --trailing-comma es5 index.js",
"verify": "npm run style && npm t",
"test": "jest",
"test:watch": "npm t -- --watch",
"test:coverage": "npm t -- --coverage",
"test:ci": "npm run test:coverage",
"style": "eslint .",
"style:fix": "npm run style -- --fix",
"release": "semantic-release pre && npm publish && semantic-release post"
},
"jest": {
"moduleFileExtensions": [
"js",
"vue"
],
"moduleNameMapper": {
"^test/fixtures/(.*)": "<rootDir>/test/fixtures/$1"
},
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/index.js"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"maxSubjectLength": 120
}
},
"lint-staged": {
"./index.js": [
"npm run prettier -- --write",
"style:fix",
"git add"
]
},
"peerDependencies": {
"vue-template-compiler": "2.4.x",
"vue-template-es2015-compiler": "1.5.x"
}
}