-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.18 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
{
"name": "@vuex-orm/plugin-soft-delete",
"version": "1.2.1",
"description": "Vuex ORM plugin for adding soft delete capability.",
"main": "dist/vuex-orm-soft-delete.cjs.js",
"browser": "dist/vuex-orm-soft-delete.esm.js",
"module": "dist/vuex-orm-soft-delete.esm-bundler.js",
"unpkg": "dist/vuex-orm-soft-delete.global.js",
"typings": "dist/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "node scripts/build.js",
"clean": "rm -rf dist && rm -rf dist && rm -rf coverage && rm -rf .nyc_output && rm -rf .tmp",
"lint": "prettier --write --parser typescript \"{src,test}/**/*.ts\"",
"lint:fail": "prettier --check --parser typescript \"{src,test}/**/*.ts\"",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --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 scripts/release.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vuex-orm/plugin-soft-delete.git"
},
"keywords": [
"orm",
"vuex-orm",
"vuex-plugin",
"vuex-orm-plugin",
"soft-delete",
"change-tracking"
],
"author": "Kia Ishii",
"license": "MIT",
"bugs": {
"url": "https://github.com/vuex-orm/plugin-soft-delete/issues"
},
"peerDependencies": {
"@vuex-orm/core": ">=0.34.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^14.0.0",
"@rollup/plugin-node-resolve": "^8.4.0",
"@rollup/plugin-replace": "^2.3.1",
"@types/jest": "^26.0.4",
"@vuex-orm/core": "^0.36.3",
"brotli": "^1.3.2",
"chalk": "^4.1.0",
"codecov": "^3.6.4",
"conventional-changelog-cli": "^2.0.31",
"enquirer": "^2.3.4",
"execa": "^4.0.0",
"jest": "^26.1.0",
"prettier": "2.0.5",
"rollup": "^2.3.2",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.0",
"semver": "^7.1.3",
"ts-jest": "^26.1.3",
"typescript": "^3.8.3",
"vue": "^2.6.11",
"vue-server-renderer": "^2.6.11",
"vuepress": "^1.3.0",
"vuepress-theme-vue": "^1.1.0",
"vuex": "^3.1.3"
}
}