forked from Vanilla-IceCream/vuex-bound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.91 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
{
"name": "vuex-bound",
"version": "1.3.0",
"description": "Vue two-way binding (v-model) for Vuex state and mutations.",
"main": "dist/vuex-bound.cjs.js",
"module": "dist/vuex-bound.esm.js",
"browser": "dist/vuex-bound.umd.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"build": "rollup -c",
"test": "jest --coverage",
"coverage": "cat ./coverage/lcov.info | coveralls",
"typed": "flow-typed install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/vuex-bound.git"
},
"keywords": [
"Vue",
"Vuex",
"v-model"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/vuex-bound/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/vuex-bound#readme",
"peerDependencies": {
"vuex": ">= 3 < 5"
},
"dependencies": {},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.28",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-jest": "^22.4.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-root-import": "^5.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-import-resolver-babel-plugin-root-import": "^1.1.1",
"eslint-plugin-flowtype": "^2.46.3",
"eslint-plugin-flowtype-errors": "^3.5.1",
"eslint-plugin-import": "^2.12.0",
"flow-bin": "^0.72.0",
"flow-typed": "^2.4.0",
"jest": "^22.4.4",
"rollup": "^0.59.1",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0",
"vue": "^2.5.16",
"vue-template-compiler": "^2.5.16",
"vuex": "^3.0.1"
}
}