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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
| {
| "_args": [
| [
| "vuex-module-decorators@1.0.1",
| "/Users/tomas/PAM/PAMapp"
| ]
| ],
| "_from": "vuex-module-decorators@1.0.1",
| "_id": "vuex-module-decorators@1.0.1",
| "_inBundle": false,
| "_integrity": "sha512-FLWZsXV5XAtl/bcKUyQFpnSBtpc3wK/7zSdy9oKbyp71mZd4ut5y2zSd219wWW9OG7WUOlVwac4rXFFDVnq7ug==",
| "_location": "/vuex-module-decorators",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "vuex-module-decorators@1.0.1",
| "name": "vuex-module-decorators",
| "escapedName": "vuex-module-decorators",
| "rawSpec": "1.0.1",
| "saveSpec": null,
| "fetchSpec": "1.0.1"
| },
| "_requiredBy": [
| "/nuxt-property-decorator"
| ],
| "_resolved": "https://registry.npmjs.org/vuex-module-decorators/-/vuex-module-decorators-1.0.1.tgz",
| "_spec": "1.0.1",
| "_where": "/Users/tomas/PAM/PAMapp",
| "author": {
| "name": "Arnav Gupta",
| "email": "arnav@codingblocks.com"
| },
| "bugs": {
| "url": "https://github.com/championswimmer/vuex-module-decorators/issues"
| },
| "dependencies": {},
| "description": "Decorators to make class-like Vuex modules",
| "devDependencies": {
| "@types/chai": "^4.2.12",
| "@types/mocha": "^8.0.3",
| "chai": "^4.2.0",
| "mocha": "^8.1.3",
| "mock-local-storage": "^1.1.8",
| "nyc": "^15.1.0",
| "prettier": "^2.1.2",
| "rimraf": "^3.0.2",
| "rollup": "^2.27.1",
| "rollup-plugin-typescript2": "^0.27.2",
| "rollup-plugin-uglify": "^6.0.4",
| "ts-node": "^9.0.0",
| "tslib": "^2.0.1",
| "tslint": "^6.1.3",
| "tslint-config-prettier": "^1.18.0",
| "tslint-config-standard": "^9.0.0",
| "tslint-eslint-rules": "^5.4.0",
| "tslint-plugin-prettier": "^2.3.0",
| "typescript": "^4.0.3",
| "vue": "^2.6.10",
| "vuepress": "^1.0.3",
| "vuex": "^3.1.1",
| "vuex-persist": "^2.2.0"
| },
| "engines": {
| "node": ">= 8",
| "npm": ">= 5",
| "yarn": ">= 1"
| },
| "homepage": "https://github.com/championswimmer/vuex-module-decorators#readme",
| "keywords": [
| "vuex",
| "vue",
| "typescript",
| "decorators"
| ],
| "license": "MIT",
| "main": "dist/cjs/index.js",
| "module": "dist/esm/index.js",
| "name": "vuex-module-decorators",
| "peerDependencies": {
| "vue": ">=2",
| "vuex": "3"
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/championswimmer/vuex-module-decorators.git"
| },
| "scripts": {
| "build": "rollup -c",
| "clean": "rimraf dist .rpt2_cache",
| "cover": "nyc npm test",
| "distclean": "rimraf .nyc_output coverage dist .rpt2_cache",
| "docs:build": "vuepress build docs",
| "docs:serve": "vuepress dev docs",
| "lint": "tslint --project .",
| "lint:fix": "tslint --project . --fix",
| "prebuild": "npm run clean",
| "prepublishOnly": "npm run build",
| "prereport": "npm run cover",
| "pretest": "npm run build && npm run lint",
| "report": "nyc report --reporter lcov --reporter html",
| "test": "cd test && mocha -r ts-node/register \"**/*.ts\"",
| "test:dirty": "cd test && mocha -r ts-node/register \"**/*.ts\""
| },
| "sideEffects": false,
| "types": "dist/types/index.d.ts",
| "typings": "dist/types/index.d.ts",
| "version": "1.0.1"
| }
|
|