-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "typescript-fsa-redux-saga-extended",
"version": "1.0.6",
"description": "TypeScript FSA utilities for redux-saga",
"keywords": ["redux-saga", "typescript", "action", "action creator"],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": ["src", "lib"],
"scripts": {
"clean": "rimraf lib",
"lint": "tslint -c tslint.json src/**/*.ts tests/**/*.ts",
"test": "ts-node -P tsconfig.tests.json node_modules/.bin/tape tests/*.ts",
"build": "tsc",
"prepublish":
"npm run clean && npm run lint && npm run test && npm run build"
},
"author": "Alberto Silva <alberto.silva@gmail.com>",
"repository": "biko2/typescript-fsa-redux-saga-extended",
"license": "MIT",
"devDependencies": {
"@types/tape": "^4.2.28",
"redux": "^3.6.0",
"rimraf": "^2.5.4",
"tape": "^4.6.2",
"ts-node": "^3.3.0",
"tslint": "^4.1.0",
"typescript": "^2.5.2"
},
"dependencies": {
"redux-saga": ">=0.14.0 <=0.16.0",
"tslib": "^1.7.1",
"typescript-fsa": "^2.0.0"
}
}