-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.26 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
{
"name": "comstock",
"version": "0.0.17",
"description": "Simple alternative to Vuex, written in TypeScript",
"main": "index.ts",
"typings": "src/types/index.d.ts",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holtalanm/comstock.git"
},
"keywords": [
"vuex",
"store",
"vue",
"redux"
],
"author": "Alan Holt",
"license": "MIT",
"bugs": {
"url": "https://github.com/holtalanm/comstock/issues"
},
"homepage": "https://github.com/holtalanm/comstock#readme",
"devDependencies": {
"@types/jest": "^24.0.15",
"@vue/test-utils": "^1.0.0-beta.29",
"jest": "^24.8.0",
"ts-jest": "^24.0.2",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"vue": "^2.6.10",
"vue-jest": "^3.0.4",
"vue-property-decorator": "^8.2.1",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@types/node": "^12.6.8",
"core-js": "^3.1.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"json",
"vue",
"d.ts"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.tsx?$": "ts-jest"
},
"testURL": "http://localhost/",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$"
}
}