-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.94 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.94 KB
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
{
"name": "revux",
"version": "1.3.1",
"description": "Redux bindings for Vue.js",
"main": "dist/revux.js",
"scripts": {
"build": "BABEL_ENV=build node_modules/rollup/bin/rollup --globals redux:redux -c",
"watch": "BABEL_ENV=build node_modules/rollup/bin/rollup --globals redux:redux -c -w",
"example": "npx poi watch ./example/index.js -d dist-example/ & serve ./dist-example",
"test": "npx poi test --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edvincandon/revux.git"
},
"keywords": [
"revux",
"redux",
"vue",
"vuejs"
],
"author": "Edvin CANDON",
"license": "ISC",
"bugs": {
"url": "https://github.com/edvincandon/revux/issues"
},
"homepage": "https://github.com/edvincandon/revux#readme",
"peerDependencies": {
"redux": "^3.6.0",
"vue": "^2.1.6"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-poi": "^1.1.2",
"babel-preset-vue-app": "^2.0.0",
"babel-register": "^6.18.0",
"chai": "^4.2.0",
"coveralls": "^2.13.1",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine-core": "^2.99.1",
"karma-jasmine": "^1.1.2",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "0.3.7",
"phantomjs": "^2.1.7",
"phantomjs-polyfill-object-assign": "0.0.2",
"poi": "^9.6.13",
"poi-preset-karma": "^9.2.4",
"redux": "^3.6.0",
"redux-thunk": "^2.3.0",
"rollup": "^0.42.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-watch": "^4.3.1",
"serve": ">=7.1.3",
"sinon": "^2.3.4",
"style-loader": "^0.13.0",
"vue": "^2.6.10",
"vue-cli": "^2.9.6",
"vue-router": "^2.1.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^2.6.1"
},
"dependencies": {},
"overrides": {
"tar": ">=6.2.1"
}
}