-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 977 Bytes
/
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
{
"name": "redux-saga-tools",
"version": "1.2.0",
"description": "A set of utility functions to write saga and reducers easily",
"main": "index.js",
"scripts": {
"build": "rimraf *.js *.d.ts && tsc",
"clean": "rimraf *.js *.d.ts",
"lint": "tslint -p \".\" -t stylish",
"prepublish": "npm run build",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rintoj/redux-saga-tools.git"
},
"keywords": [
"Redux",
"Saga"
],
"author": "Rinto Jose",
"license": "MIT",
"bugs": {
"url": "https://github.com/rintoj/redux-saga-tools/issues"
},
"homepage": "https://github.com/rintoj/redux-saga-tools#readme",
"dependencies": {
"redux-saga": "^1.1.1"
},
"devDependencies": {
"rimraf": "^2.7.1",
"tslint": "^5.20.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-react": "^3.6.0",
"tslint-react-recommended": "^1.0.15",
"typescript": "^3.6.4"
}
}