-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·66 lines (66 loc) · 1.72 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
{
"name": "vue-local-storage-decorator",
"version": "0.2.1",
"description": "local storage decorator and helper function in Vue",
"main": "dist/vue-local-storage-decorator.umd.js",
"module": "dist/vue-local-storage-decorator.js",
"keywords": [
"vue",
"typescript",
"decorator",
"localstorage"
],
"author": "vip30",
"license": "MIT",
"directories": {
"test": "test"
},
"scripts": {
"build": "tsc -p src/tsconfig.json && rollup -c",
"cover": "jest --coverage --no-cache",
"format": "prettier --write '**/*.ts' ",
"pre-commit": "npm run format",
"release": "sh release.sh",
"test": "jest --no-cache --watchAll"
},
"files": [
"dist",
"index.d.ts"
],
"devDependencies": {
"@types/jest": "^16.0.8",
"@types/node": "^8.0.47",
"@vue/test-utils": "^1.0.0-beta.10",
"codecov": "^3.0.2",
"jest": "^22.4.3",
"jest-localstorage-mock": "^2.2.0",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-typescript": "^0.8.1",
"ts-jest": "^22.4.6",
"typescript": "^2.8.3",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.7.0",
"pre-commit": "^1.2.2",
"prettier": "^1.10.2",
"prettier-tslint": "^0.3.0",
"vue": "^2.5.16",
"vue-jest": "^2.6.0",
"vue-template-compiler": "^2.5.13"
},
"pre-commit": [
"pre-commit"
],
"typings": "index.d.ts",
"dependencies": {
"vue-class-component": "^6.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vip30/vue-local-storage-decorator.git"
},
"bugs": {
"url": "https://github.com/vip30/vue-local-storage-decorator.git/issues"
},
"homepage": "https://github.com/vip30/vue-local-storage-decorator.git#readme"
}