-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "vuex-class-component",
"version": "2.3.6",
"description": "\"A Type Safe Vuex Module or Store Using ES6 Classes and ES7 Decorators written in TypeScript.\"",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "rimraf js dist && tsc && tsc -p ./tsconfig.jsbuild.json"
},
"keywords": [
"Vuex with Type safety",
"Typesafe Vuex",
"Vuex Classes",
"Vuex State Manager",
"Vuex with Type Support",
"TypeScript Vuex",
"Vuex TypeScript"
],
"repository": "https://www.github.com/michaelolof/vuex-class-component",
"author": "michaelolof",
"license": "ISC",
"devDependencies": {
"@types/jest": "^24.0.11",
"@vue/test-utils": "^1.0.0-beta.29",
"jest": "^24.5.0",
"ts-jest": "^24.0.0",
"ts-loader": "^5.3.1",
"typescript": "^3.2.2",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"vuex": "^3.1.0",
"webpack": "^4.28.0"
},
"dependencies": {
"object.getownpropertydescriptors": "^2.0.3",
"rimraf": "^2.6.3"
}
}