-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.34 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
{
"name": "vue-reactive-store",
"version": "0.0.20",
"description": "Structure your Vue.js data in a centralized way, with a reactive data store. Inspired by VueX and Vue.js .",
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"types": "./types/index.d.ts",
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "bili --format cjs --format es",
"test": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:mdartic/vue-reactive-store.git"
},
"keywords": [
"state",
"management",
"vue"
],
"author": "Mathieu DARTIGUES",
"license": "MIT",
"bugs": {
"url": "https://github.com/mdartic/vue-reactive-store/issues"
},
"homepage": "https://github.com/mdartic/vue-reactive-store#readme",
"peerDependencies": {
"vue": "^2.6.11"
},
"devDependencies": {
"@types/jest": "^24.0.23",
"@typescript-eslint/parser": "^2.12.0",
"bili": "^4.8.1",
"eslint": "^6.7.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0",
"rollup-plugin-typescript2": "^0.21.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3",
"vuepress": "^1.2.0"
}
}