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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
| {
| "_args": [
| [
| "vuex@3.6.2",
| "/Users/tomas/PAM/PAMapp"
| ]
| ],
| "_from": "vuex@3.6.2",
| "_id": "vuex@3.6.2",
| "_inBundle": false,
| "_integrity": "sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==",
| "_location": "/vuex",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "vuex@3.6.2",
| "name": "vuex",
| "escapedName": "vuex",
| "rawSpec": "3.6.2",
| "saveSpec": null,
| "fetchSpec": "3.6.2"
| },
| "_requiredBy": [
| "/@nuxt/vue-app"
| ],
| "_resolved": "https://registry.npmjs.org/vuex/-/vuex-3.6.2.tgz",
| "_spec": "3.6.2",
| "_where": "/Users/tomas/PAM/PAMapp",
| "author": {
| "name": "Evan You"
| },
| "bugs": {
| "url": "https://github.com/vuejs/vuex/issues"
| },
| "description": "state management for Vue.js",
| "devDependencies": {
| "@babel/core": "^7.12.10",
| "@babel/preset-env": "^7.12.11",
| "@rollup/plugin-buble": "^0.21.3",
| "@rollup/plugin-commonjs": "^11.1.0",
| "@rollup/plugin-node-resolve": "^7.1.3",
| "@rollup/plugin-replace": "^2.3.2",
| "@types/node": "^13.13.5",
| "@vuepress/theme-vue": "^1.8.0",
| "babel-jest": "^26.6.3",
| "babel-loader": "^8.2.2",
| "brotli": "^1.3.2",
| "chalk": "^4.0.0",
| "conventional-changelog-cli": "^2.1.1",
| "cross-env": "^5.2.0",
| "css-loader": "^2.1.0",
| "enquirer": "^2.3.5",
| "eslint": "^6.8.0",
| "eslint-plugin-vue-libs": "^4.0.0",
| "execa": "^5.0.0",
| "express": "^4.17.1",
| "jest": "^26.6.3",
| "puppeteer": "^4.0.0",
| "regenerator-runtime": "^0.13.5",
| "rollup": "^2.38.0",
| "rollup-plugin-terser": "^5.3.0",
| "semver": "^7.3.2",
| "start-server-and-test": "^1.11.7",
| "todomvc-app-css": "^2.3.0",
| "typescript": "^3.8.3",
| "vue": "2.5.22",
| "vue-loader": "15.2.1",
| "vue-server-renderer": "2.5.22",
| "vue-template-compiler": "2.5.22",
| "vuepress": "^1.8.0",
| "webpack": "^4.43.0",
| "webpack-dev-middleware": "^3.7.2",
| "webpack-hot-middleware": "^2.25.0"
| },
| "exports": {
| ".": {
| "module": "./dist/vuex.esm.js",
| "require": "./dist/vuex.common.js",
| "import": "./dist/vuex.mjs"
| },
| "./": "./"
| },
| "files": [
| "dist",
| "types/index.d.ts",
| "types/helpers.d.ts",
| "types/logger.d.ts",
| "types/vue.d.ts"
| ],
| "homepage": "https://github.com/vuejs/vuex#readme",
| "jsdelivr": "dist/vuex.js",
| "license": "MIT",
| "main": "dist/vuex.common.js",
| "module": "dist/vuex.esm.js",
| "name": "vuex",
| "peerDependencies": {
| "vue": "^2.0.0"
| },
| "repository": {
| "type": "git",
| "url": "git+https://github.com/vuejs/vuex.git"
| },
| "scripts": {
| "build": "npm run build:main && npm run build:logger",
| "build:logger": "node scripts/build-logger.js",
| "build:main": "node scripts/build-main.js",
| "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
| "coverage": "jest --testPathIgnorePatterns test/e2e --coverage",
| "dev": "node examples/server.js",
| "docs": "vuepress dev docs",
| "docs:build": "vuepress build docs",
| "lint": "eslint src test",
| "release": "node scripts/release.js",
| "test": "npm run lint && npm run test:types && npm run test:unit && npm run test:ssr && npm run test:e2e && npm run test:esm",
| "test:e2e": "start-server-and-test dev http://localhost:8080 \"jest --testPathIgnorePatterns test/unit\"",
| "test:esm": "node test/esm/esm-test.js",
| "test:ssr": "cross-env VUE_ENV=server jest --testPathIgnorePatterns test/e2e",
| "test:types": "tsc -p types/test",
| "test:unit": "jest --testPathIgnorePatterns test/e2e"
| },
| "sideEffects": false,
| "typings": "types/index.d.ts",
| "unpkg": "dist/vuex.js",
| "version": "3.6.2"
| }
|
|