-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 1.99 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
{
"name": "vuex-tstore",
"version": "1.0.5",
"description": "Provides a low-overhead TypeScript wrapper around Vuex that can trigger compilation errors and IntelliSense tips.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"typings": "./typings",
"scripts": {
"build": "npm run build:es && npm run build:cjs && npm run build:typedefs",
"build:es": "tsc -p ./tsconfig.es.json",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"build:typedefs": "tsc -p ./tsconfig.types.json",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevethedev/vuex-tstore.git"
},
"keywords": [
"Vuex",
"TypeScript",
"Wrapper",
"IntelliSense"
],
"author": {
"name": "Steven Jimenez",
"email": "[email protected]",
"url": "https://www.stevethedev.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/stevethedev/vuex-tstore/issues"
},
"homepage": "https://github.com/stevethedev/vuex-tstore#readme",
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^12.12.47",
"jest": "^26.0.1",
"prettier": "1.18.2",
"ts-jest": "^26.1.0",
"tslib": "^1.13.0",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.5",
"vue": "^2.6.11",
"vuex": "^3.4.0"
},
"peerDependencies": {
"vue": "^2.6.10",
"vuex": "^3.1.1"
},
"jest": {
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"preset": "ts-jest/presets/js-with-ts",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules",
"src"
],
"modulePaths": [
"<rootDir>/src",
"<rootDir>/node_modules"
],
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleNameMapper": {
"^~/(.*)$": "<rootDir>/src/$1"
},
"roots": [
"<rootDir>/src"
]
},
"files": [
"src",
"dist",
"typings"
]
}