forked from vire/jest-vue-preprocessor
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.95 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.95 KB
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
{
"name": "jest-vue-preprocessor",
"version": "1.0.1",
"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 <code.vire@gmail.com>",
"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.3.4",
"vue-property-decorator": "4.0.0",
"vue-template-compiler": "^2.2.6",
"vue-template-es2015-compiler": "1.3.2"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-es2015": "6.24.1",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"eslint": "3.19.0",
"husky": "0.13.4",
"jest": "20.0.4",
"pug": "2.0.0-rc.2",
"semantic-release": "6.3.6",
"validate-commit-msg": "2.12.1",
"vue": "^2.2.6"
},
"scripts": {
"cz": "git-cz",
"commitmsg": "validate-commit-msg",
"prepush": "npm run verify",
"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"
],
"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
}
}
}