You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
3.7 KiB
125 lines
3.7 KiB
{
|
|
"_args": [
|
|
[
|
|
"vuex@3.6.0",
|
|
"/home/lefos/repos/swarmlab-playground-client"
|
|
]
|
|
],
|
|
"_from": "vuex@3.6.0",
|
|
"_id": "vuex@3.6.0",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-W74OO2vCJPs9/YjNjW8lLbj+jzT24waTo2KShI8jLvJW8OaIkgb3wuAMA7D+ZiUxDOx3ubwSZTaJBip9G8a3aQ==",
|
|
"_location": "/vuex",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "version",
|
|
"registry": true,
|
|
"raw": "vuex@3.6.0",
|
|
"name": "vuex",
|
|
"escapedName": "vuex",
|
|
"rawSpec": "3.6.0",
|
|
"saveSpec": null,
|
|
"fetchSpec": "3.6.0"
|
|
},
|
|
"_requiredBy": [
|
|
"/"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/vuex/-/vuex-3.6.0.tgz",
|
|
"_spec": "3.6.0",
|
|
"_where": "/home/lefos/repos/swarmlab-playground-client",
|
|
"author": {
|
|
"name": "Evan You"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/vuejs/vuex/issues"
|
|
},
|
|
"description": "state management for Vue.js",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.6",
|
|
"@babel/preset-env": "^7.9.6",
|
|
"@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.7.1",
|
|
"babel-jest": "^26.0.1",
|
|
"babel-loader": "^8.1.0",
|
|
"brotli": "^1.3.2",
|
|
"chalk": "^4.0.0",
|
|
"conventional-changelog-cli": "^2.0.31",
|
|
"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": "^4.0.0",
|
|
"express": "^4.17.1",
|
|
"jest": "^26.0.1",
|
|
"puppeteer": "^4.0.0",
|
|
"regenerator-runtime": "^0.13.5",
|
|
"rollup": "^2.8.2",
|
|
"rollup-plugin-terser": "^5.3.0",
|
|
"semver": "^7.3.2",
|
|
"start-server-and-test": "^1.11.0",
|
|
"todomvc-app-css": "2.1.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.7.1",
|
|
"webpack": "^4.43.0",
|
|
"webpack-dev-middleware": "^3.7.2",
|
|
"webpack-hot-middleware": "^2.25.0"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"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.0"
|
|
}
|
|
|