-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1007 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
{
"name": "redux-request-loading",
"version": "2.0.0",
"description": "Package for tracking loading state of multiple requests",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p ./tsconfig.json --outDir dist",
"build:test": "tsc -p ./tsconfig.test.json",
"test": "npm run build:test && alsatian \"./test/**/*.test.js\"",
"lint": "tslint -c tslint.json \"./{src,test}/**/*.{ts,tsx}\"",
"review": "npm run lint && npm run test"
},
"keywords": [
"redux",
"loading"
],
"author": "Henry Ing-Simmons (https://github.com/hisuwh)",
"license": "ISC",
"peerDependencies": {
"redux": "4.x",
"reselect": "4.x"
},
"devDependencies": {
"alsatian": "3.2.1",
"redux": "^4.0.5",
"reselect": "^4.0.0",
"redux-thunk": "^2.2.0",
"redux-mock-store": "1.5.4",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}