-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "redux-api-utility-library",
"version": "1.0.4",
"description": "A utility library for handling API Requests and Async Actions with Redux",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"lint": "tslint -p .",
"docs": "typedoc --out ./docs ./src/*/index.ts; touch docs/.nojekyll",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sakoh/redux-api-utility-library.git"
},
"keywords": [
"react",
"redux",
"api",
"middleware",
"async"
],
"author": "Sako Hartounian",
"license": "ISC",
"bugs": {
"url": "https://github.com/sakoh/redux-api-async-middleware/issues"
},
"homepage": "https://github.com/sakoh/redux-api-async-middleware#readme",
"dependencies": {
"axios": "^0.17.1",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-jest": "^22.1.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"domexception": "^1.0.1",
"jest": "^22.1.3",
"ts-jest": "^22.0.1",
"tslint": "^5.9.1",
"tslint-config-dollarshaveclub": "^1.0.2",
"typedoc": "^0.10.0",
"typescript": "^2.6.2",
"webpack": "^3.11.0"
},
"jest": {
"verbose": true,
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
],
"transform": {
"^.+\\.ts?$": "./node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
]
}
}