-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.49 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
{
"name": "@averjs/vuex-decorators",
"version": "3.3.0",
"description": "Decorators for Vuex.",
"keywords": [
"vue",
"vuex",
"decorators"
],
"author": "Florian Weber <[email protected]>",
"contributors": [
"Florian Weber <[email protected]>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/exreplay/vuex-decorators.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/exreplay/vuex-decorators/issues"
},
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"module": "dist/esm/index.js",
"files": [
"/dist"
],
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "jest && codecov",
"build": "rollup --config",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix --project tsconfig.json",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/jest": "25.2.2",
"@vue/test-utils": "1.0.3",
"codecov": "3.6.5",
"jest": "26.0.1",
"prettier": "2.0.5",
"rollup": "2.10.2",
"rollup-plugin-terser": "5.3.0",
"rollup-plugin-typescript2": "0.27.1",
"standard-version": "8.0.0",
"ts-jest": "26.0.0",
"tslint": "6.1.2",
"tslint-config-prettier": "1.18.0",
"tslint-config-standard": "9.0.0",
"tslint-plugin-prettier": "2.3.0",
"typescript": "3.9.2",
"vue": "2.6.11",
"vue-template-compiler": "2.6.11",
"vuepress": "1.5.1",
"vuex": "3.4.0"
}
}