forked from microsoft/TypeScript-Vue-Starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.32 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
{
"name": "typescript-vue-starter",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack",
"test": "jest"
},
"keywords": [],
"author": {
"name": "Daniel Rosenwasser",
"url": "https://github.com/DanielRosenwasser"
},
"license": "Apache-2.0",
"dependencies": {
"vue": "^2.5.2",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^6.0.0",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^23.3.2",
"@vue/test-utils": "^1.0.0-beta.25",
"css-loader": "^0.28.1",
"jest": "^23.6.0",
"ts-jest": "^23.10.3",
"ts-loader": "^2.0.3",
"typescript": "^2.7.2",
"vue-jest": "^2.6.0",
"vue-loader": "^12.0.3",
"vue-template-compiler": "^2.5.2",
"webpack": "^2.5.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"vue"
],
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"transform": {
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest",
".*\\.(ts)$": "ts-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
},
"globals": {
"vue-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$"
}
}