forked from championswimmer/vuex-module-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.19 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
67
68
69
70
71
72
73
74
75
76
{
"name": "vuex-module-decorators",
"version": "0.16.1",
"description": "Decorators to make class-like Vuex modules",
"main": "dist/cjs/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"module": "dist/esm/index.js",
"scripts": {
"clean": "rimraf dist .rpt2_cache",
"distclean": "rimraf .nyc_output coverage dist .rpt2_cache",
"prebuild": "npm run clean",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"pretest": "npm run build && npm run lint",
"test": "cd test && mocha -r ts-node/register \"**/*.ts\"",
"test:dirty": "cd test && mocha -r ts-node/register \"**/*.ts\"",
"cover": "nyc npm test",
"prereport": "npm run cover",
"report": "nyc report --reporter lcov --reporter html",
"docs:build": "vuepress build docs",
"docs:serve": "vuepress dev docs",
"lint": "tslint -p tsconfig.json",
"lint:fix": "tslint -p tsconfig.json --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/championswimmer/vuex-module-decorators.git"
},
"keywords": [
"vuex",
"vue",
"typescript",
"decorators"
],
"author": "Arnav Gupta <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/championswimmer/vuex-module-decorators/issues"
},
"peerDependencies": {
"vue": ">=2",
"vuex": "3"
},
"homepage": "https://github.com/championswimmer/vuex-module-decorators#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"mock-local-storage": "^1.1.8",
"nyc": "^13.2.0",
"prettier": "^1.16.4",
"rimraf": "^2.6.3",
"rollup": "^1.19.4",
"rollup-plugin-typescript2": "^0.25.3",
"rollup-plugin-uglify": "^6.0.2",
"ts-node": "^8.6.2",
"tslib": "^1.10.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.5.3",
"vue": "^2.6.10",
"vuepress": "^1.0.3",
"vuex": "^3.1.1",
"vuex-persist": "^2.2.0"
},
"dependencies": {},
"engines": {
"node": ">= 8",
"npm": ">= 5",
"yarn": ">= 1"
}
}