-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 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
{
"name": "redux-async-actions-factory",
"version": "1.1.3",
"description": "Automaticaly adds loading and error states to your API calls, and a reset store to each of yours Redux stores.",
"main": "build/index.js",
"author": "Xavier Lefèvre <xavier.lefevre@me.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bamlab/redux-async-actions-factory"
},
"keywords": [
"react",
"reactjs",
"react-native",
"redux",
"store",
"request",
"async",
"loading",
"error"
],
"scripts": {
"build": "yarn babel src/index.js --out-file build/index.js",
"test": "yarn test:flow && yarn test:lint && yarn test:unit",
"test:flow": "flow",
"test:unit": "jest",
"test:lint": "eslint ."
},
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-3": "^6.24.1",
"lodash": "^4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"eslint": "^4.4.1",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-prettier": "^2.2.0",
"flow-bin": "^0.53.1",
"jest": "^20.0.4",
"prettier": "^1.8.2"
},
"jest": {
"cacheDirectory": "<rootDir>/jest/tmp",
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}