forked from davestewart/vue-class-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
{
"name": "vue-class-store",
"description": "Universal Vue stores you write once and use anywhere",
"version": "2.0.5",
"author": "Dave Stewart",
"license": "MIT",
"main": "dist/vue-class-store.js",
"module": "dist/vue-class-store.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/*"
],
"directories": {
"test": "test"
},
"scripts": {
"dev": "rollup -c build/rollup.js -w",
"build": "rollup -c build/rollup.js",
"stats": "node dev/stats.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.8.3",
"@rollup/plugin-buble": "^0.21.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"rimraf": "^3.0.2",
"rollup": "^2.10.2",
"rollup-plugin-license": "^2.0.1",
"rollup-plugin-typescript2": "^0.27.1",
"rollup-plugin-uglify": "^6.0.4",
"rollup-plugin-vue": "^5.1.7",
"tslib": "^2.0.0",
"typescript": "^3.9.2",
"vue": "^2.0.0"
},
"keywords": [
"store",
"vue",
"vuex",
"state management"
],
"repository": {
"type": "git",
"url": "git+https://github.com/davestewart/vue-class-store.git"
},
"bugs": "https://github.com/davestewart/vue-class-store/issues",
"homepage": "https://github.com/davestewart/vue-class-store#readme"
}