This repository has been archived by the owner on Nov 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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
{
"name": "vuex-light",
"version": "2.1.5",
"engines": {
"node": ">=12"
},
"description": "Better DX for Vue 3 state management solution",
"keywords": [
"vue",
"vuex",
"composition",
"typescript"
],
"main": "dist/index.cjs.prod.js",
"module": "dist/index.esm-bundler.js",
"unpkg": "dist/index.global.prod.js",
"jsdelivr": "dist/index.global.prod.js",
"types": "dist/src/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/iendeavor/vuex-light.git"
},
"bugs": {
"url": "https://github.com/iendeavor/vuex-light/issues"
},
"homepage": "https://iendeavor.github.io/vuex-light",
"author": "Ernest <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@microsoft/api-documenter": "^7.12.1",
"@microsoft/api-extractor": "^7.12.1",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@types/jest": "^26.0.20",
"@types/ramda": "^0.27.34",
"dom-storage": "^2.1.0",
"execa": "^5.0.0",
"husky": "5",
"jest": "^26.6.3",
"pinst": "^2.1.4",
"prettier": "^2.1.2",
"ramda": "^0.27.1",
"rimraf": "^3.0.2",
"rollup": "^2.33.3",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"shvl": "^2.0.1",
"standard-version": "^9.0.0",
"ts-expect": "^1.1.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "~4.1.3",
"vue": "^3.0.9"
},
"peerDependencies": {
"vue": "^3.0.9"
},
"optionalDependencies": {
"ramda": "^0.27.1",
"shvl": "^2.0.1"
},
"scripts": {
"build": "node scripts/build.js",
"docs": "api-documenter markdown -i temp -o docs",
"release": "node scripts/release.js",
"test": "jest",
"lint": "prettier --check .",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
}
}