-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "redux-api-middleman",
"version": "3.2.3",
"description": "A Redux middleware making sending request a breeze",
"main": "lib/index.js",
"jest": {
"testEnvironment": "node"
},
"size-limit": [
{
"name": "minified",
"path": "src/index.js",
"gzip": false
},
{
"name": "gzipped",
"path": "src/index.js"
}
],
"scripts": {
"test": "jest --watch --verbose false",
"test:ci": "yarn lint && jest",
"lint": "standard --fix --verbose | snazzy",
"size": "size-limit",
"size:why": "size-limit --why",
"prebuild": "yarn clear",
"build": "babel src --out-dir lib",
"clear": "rm -rf lib/*",
"release:pre": "yarn build && release pre && npm publish",
"release:patch": "yarn build && release patch && npm publish",
"release:minor": "yarn build && release minor && npm publish",
"release:major": "yarn build && release major && npm publish"
},
"standard": {
"env": [
"jest"
]
},
"author": {
"name": "YangHsing Lin",
"email": "[email protected]"
},
"homepage": "https://github.com/CodementorIO/redux-api-middleman",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"mockdate": "^3.0.2",
"nock": "^10.0.6",
"release": "^6.0.1",
"size-limit": "^2.0.2",
"snazzy": "^8.0.0",
"standard": "^13.1.0"
},
"dependencies": {
"axios": "^0.19.0",
"es6-promise": "^4.2.8",
"humps": "^2.0.1",
"object.omit": "^3.0.0",
"qs": "^6.5.2"
},
"licence": "MIT"
}