-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "vuex-saga-ts",
"version": "0.20.2",
"description": "Nothing but a simple plugin connecting redux-saga in ts with some utils",
"main": "index.ts",
"scripts": {
"prebuild": "rimraf build",
"build:es2016": "tsc",
"build:copy-files": "node ./scripts/copy-files.js",
"build": "yarn prebuild && yarn build:es2016 && yarn build:copy-files",
"release": "yarn build && npm publish build --access public",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "[email protected]:albertleigh/vuex-saga-ts.git"
},
"bugs": {
"url": "https://github.com/albertleigh/vuex-saga-ts/issues"
},
"keywords": [
"vuex",
"saga",
"plugin",
"typescript",
"albertli90"
],
"author": "Wentao Li <[email protected]>",
"license": "MIT",
"dependencies": {
"redux-saga": "^1.1.3",
"vue": "^2.6.10",
"vuex": "^3.1.1"
},
"devDependencies": {
"fs-extra": "^8.1.0",
"rimraf": "^3.0.0",
"tslib": "^1.10.0",
"typescript": "^3.7.2"
}
}