This repository has been archived by the owner on Jun 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 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
69
70
71
72
73
{
"name": "vuex-observable-plugin",
"version": "0.3.1",
"description": "A plugin that adapts the popular redux-observable middleware to Vuex.",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"lint": "eslint src/index.js && eslint test",
"version:patch": "npm version patch && npm run version:post",
"version:minor": "npm version minor && npm run version:post",
"version:post": "git push && git push --tags",
"build": "babel src -d lib",
"example": "cd example && npm run example",
"prepublishOnly": "npm run lint && npm run coverage && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smirzo/vuex-observable-plugin.git"
},
"keywords": [
"vuex",
"observable",
"plugin",
"vue",
"redux",
"rxjs",
"middleware",
"redux-observable",
"vuex-observable",
"state"
],
"author": "smirzo",
"license": "MIT",
"bugs": {
"url": "https://github.com/smirzo/vuex-observable-plugin/issues"
},
"homepage": "https://redux-observable.js.org/",
"dependencies": {
"clone": "^2.1.2",
"fast-deep-equal": "^2.0.1",
"redux-observable": "^1.0.0"
},
"peerDependencies": {
"rxjs": ">=6.0.0-beta.0 <7"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"eslint": "^5.11.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^23.6.0",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3",
"vue": "^2.5.17",
"vuex": "^3.0.1"
},
"runkitExampleFilename": "runkit.js",
"files": [
"lib",
"LICENSE",
"package.json",
"README.md",
"runkit.js"
]
}