-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.33 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": "vue-persist-decorator",
"version": "1.0.2",
"description": "Clean local storage bindings for vue class components",
"main": "lib/vue-persist-decorator.js",
"author": "trepz",
"license": "MIT",
"scripts": {
"test": "jest",
"fmt": "prettier --write \"./**/*.ts\"",
"build": "tsc"
},
"files": [
"lib"
],
"typings": "lib/vue-persist-decorator.d.ts",
"keywords": [
"vue",
"typescript",
"decorator",
"persist",
"storage"
],
"dependencies": {
"vue-class-component": "^6.3.2"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"@vue/test-utils": "^1.0.0-beta.28",
"flush-promises": "^1.0.2",
"jest": "^23.6.0",
"jsdom": "^13.1.0",
"jsdom-global": "^3.0.2",
"prettier": "^1.15.2",
"ts-jest": "^23.10.4",
"ts-loader": "^5.3.0",
"tslib": "^1.9.3",
"typescript": "^3.1.6",
"vue": "^2.5.21",
"vue-template-compiler": "^2.5.21"
},
"repository": {
"type": "git",
"url": "https://github.com/trepz/vue-persist-decorator.git"
},
"bugs": {
"url": "https://github.com/trepz/vue-persist-decorator/issues"
},
"homepage": "https://github.com/trepz/vue-persist-decorator#readme"
}