-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.18 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
{
"name": "luch",
"version": "1.1.0",
"description": "Light and flexible promise-based http client built on top of isomorphic-fetch with useful functionality",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/surovv/luch.git"
},
"scripts": {
"start": "(yarn install || npm install) && npm run build && npm test",
"build": "webpack -p",
"test": "./node_modules/.bin/mocha ./test/test.js"
},
"author": "surovv",
"license": "MIT",
"keywords": [
"http-client",
"fetch",
"isomorphic-fetch",
"isomorphic",
"promise",
"json",
"browser",
"node",
"request",
"response",
"http",
"https",
"client",
"api",
"modules",
"handle",
"handling"
],
"dependencies": {
"form-data": "^2.3.2",
"isomorphic-fetch": "^2.2.1",
"qsp": "^0.3.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-loader": "^8.0.4",
"eslint": "^5.11.0",
"eslint-config-szh": "^0.0.5",
"eslint-plugin-fp": "^2.3.0",
"mocha": "^5.0.5",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2"
}
}