-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
50 lines (50 loc) · 1.13 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
{
"name": "vuex-typex",
"version": "3.1.9",
"description": "A TypeScript pattern for strongly-typed access to Vuex Store modules",
"files": [
"dist/index.d.ts",
"dist/index.js",
"dist/index.js.map"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"peerDependencies": {
"vuex": "^3.0.1"
},
"dependencies": {
"vuex": "^3.0.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"rollup": "^2.38.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"tslib": "^2.1.0",
"typescript": "^4.1.3",
"vue": "^2.5.22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrcrowl/vuex-typex.git"
},
"keywords": [
"vuex",
"typescript",
"builder"
],
"author": "mrcrowl",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrcrowl/vuex-typex/issues"
},
"homepage": "https://github.com/mrcrowl/vuex-typex#readme",
"scripts": {
"typecheck": "tsc --noEmit",
"build": "rollup --config -m",
"test:unit": "jest",
"test": "npm run test:unit"
}
}