This repository was archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.6 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.6 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
{
"name": "vue-typescript-jest",
"version": "0.3.1",
"description": "Jest preprocessor.js for Vue.js components and TypeScript",
"author": "Locoslab GmbH",
"homepage": "https://github.com/locoslab/vue-typescript-jest",
"bugs": "https://github.com/locoslab/vue-typescript-jest/issues",
"repository": "locoslab/vue-typescript-jest",
"license": "MIT",
"main": "./preprocessor.js",
"files": [
"preprocessor.js"
],
"keywords": [
"jest",
"vue",
"vueify",
"typescript",
"pug"
],
"scripts": {
"test": "jest",
"prepublish": "eslint preprocessor.js && jest --no-cache --coverage"
},
"jest": {
"transform": {
".*\\.(ts|vue)$": "<rootDir>/preprocessor.js"
},
"moduleFileExtensions": [
"ts",
"js",
"vue"
],
"testRegex": "/test/test/.*\\.(ts|js)$",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/test/.*\\.(ts|js)$",
"/.*\\.vue$"
]
},
"devDependencies": {
"@types/jest": "^19.0.0",
"babel-core": "^6.0.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-es2015": "^6.0.0",
"babel-runtime": "^6.0.0",
"eslint": "^3.7.0",
"eslint-config-locoslab": "0.1.0",
"html2jade": "^0.8.4",
"jest-cli": "^19.0.0",
"pug": "^2.0.0-beta6",
"typescript": "^2.0.3",
"vue": "^2.0.7",
"vue-template-compiler": "^2.0.7",
"vue-template-es2015-compiler": "^1.2.2",
"vue-typescript-import-dts": "^2.0.0"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "locoslab",
"env": {
"node": true
}
}
}