-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
80 lines (80 loc) · 2.45 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
77
78
79
80
{
"name": "@vuex-orm/core",
"version": "1.0.0-draft.16",
"description": "The Vuex plugin to enable Object-Relational Mapping access to the Vuex Store.",
"main": "dist/vuex-orm.cjs.js",
"browser": "dist/vuex-orm.esm-browser.js",
"module": "dist/vuex-orm.esm-bundler.js",
"unpkg": "dist/vuex-orm.global.js",
"jsdelivr": "dist/vuex-orm.global.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.mjs",
"clean": "rm -rf dist coverage temp .nyc_output .tmp",
"lint": "prettier --check --write --parser typescript \"{src,test}/**/*.ts\"",
"lint:fail": "prettier --check --parser typescript \"{src,test}/**/*.ts\"",
"jest": "jest --testPathIgnorePatterns test/performance",
"jest:perf": "jest --testPathIgnorePatterns test/{feature,regression,unit}",
"test": "yarn lint && yarn coverage",
"test:fail": "yarn lint:fail && yarn coverage",
"coverage": "jest --testPathIgnorePatterns test/performance --collect-coverage",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:deploy": "bash ./docs/deploy.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node --experimental-json-modules scripts/release.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuex-orm/vuex-orm-next.git"
},
"keywords": [
"vue",
"vuex",
"vuex-plugin",
"vuex-orm",
"orm"
],
"author": "Kia Ishii",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/vuex-orm-next/issues"
},
"peerDependencies": {
"vuex": ">=3.1.0"
},
"dependencies": {
"@types/uuid": "^8.3.3",
"normalizr": "^3.6.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-replace": "^3.0.0",
"@types/jest": "^27.0.2",
"brotli": "^1.3.2",
"chalk": "^4.1.2",
"codecov": "^3.8.3",
"conventional-changelog-cli": "^2.1.1",
"core-js": "^3.19.1",
"enquirer": "^2.3.6",
"execa": "^6.0.0",
"fs-extra": "^10.0.0",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"rollup": "^2.60.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.0",
"semver": "^7.3.5",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2",
"vue": "^2.6.14",
"vue-server-renderer": "^2.6.14",
"vuepress": "^1.8.2",
"vuex": "^3.6.2"
}
}