-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "redux-hammock",
"version": "0.3.3",
"description": "A library for simplyfing the use of redux-thunk with REST APIs",
"main": "hammock.js",
"files": [
"django_csrf_fetch.js",
"constants.js"
],
"repository": {
"type": "git",
"url": "https://github.com/mitodl/redux-hammock"
},
"scripts": {
"test": "mocha --require babel-polyfill --require babel-register src/*_test.js",
"watch": "mocha --watch --require babel-polyfill --compilers js:babel-register src/*_test.js",
"lint": "standard --env mocha",
"lint:fix": "standard --env mocha --fix",
"lint:verbose": "standard --env mocha --verbose",
"flow": "flow",
"fmt": "standard --env mocha --fix",
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"redux",
"REST"
],
"author": "Alice Pote <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"babel-polyfill": "^6.23.0",
"babel-runtime": "^6.26.0",
"isomorphic-fetch": "^3.0.0",
"lodash.camelcase": "^4.3.0",
"lodash.merge": "^4.6.2",
"lodash.snakecase": "^4.1.1",
"ramda": "0.24.1",
"redux-actions": "^2.6.5"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^10.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.24.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint-plugin-flowtype": "^5.2.0",
"fetch-mock": "^9.11.0",
"flow-bin": "^0.256.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"redux-asserts": "^0.0.12",
"rollup": "^3.0.0",
"rollup-plugin-babel": "^2.7.1",
"sinon": "^7.4.1",
"standard": "^16.0.3"
},
"babel": {
"presets": [
"flow",
"env"
],
"plugins": [
"transform-object-rest-spread"
]
},
"standard": {
"plugins": [
"flowtype"
],
"parser": "babel-eslint",
"ignore": [
"flow_declarations.js"
]
},
"peerDependencies": {
"redux-thunk": "2.x"
}
}