-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.85 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
{
"name": "vue-path-store",
"description": "A simple reactive store for Vue, that uses the dot notation path syntax",
"version": "0.0.0-semantic-release",
"author": {
"name": "Giannis Koutsaftakis",
"email": "[email protected]"
},
"license": "MIT",
"repository": "https://github.com/kouts/vue-path-store",
"keywords": [
"vue",
"state",
"store",
"path",
"keypath",
"dot"
],
"main": "dist/cjs/pathStore.js",
"module": "dist/es/pathStore.js",
"unpkg": "dist/umd/pathStore.js",
"scripts": {
"test:unit": "vue-cli-service test:unit",
"test:unit-coverage": "vue-cli-service test:unit --coverage && make-coverage-badge",
"watch": "vuepress dev docs",
"rollup": "rollup -c",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"build": "rollup -c",
"lint": "eslint . --ext .js,.vue",
"lint-fix": "eslint . --fix --ext .js,.vue",
"prepare": "husky install"
},
"peerDependencies": {
"vue": "^2.6.14"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@kouts/eslint-config": "^0.0.8",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.1.0",
"@vue/cli-plugin-babel": "^4.5.19",
"@vue/cli-plugin-unit-jest": "^4.5.19",
"@vue/cli-service": "^4.5.19",
"@vue/test-utils": "^1.3.3",
"@vue/vue2-jest": "^27.0.0",
"bootstrap": "^4.6.2",
"core-js": "^3.26.0",
"eslint": "^8.27.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"make-coverage-badge": "^1.2.0",
"pinia": "^2.0.23",
"prettier": "2.7.1",
"rollup": "^3.2.5",
"sass": "^1.56.0",
"sass-loader": "^10.3.1",
"vue-set-path": "^1.1.9",
"vuepress": "^1.9.7",
"vuepress-plugin-vue-example": "^1.1.7",
"vuex": "^3.6.2"
}
}