-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.72 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
{
"name": "@risan/http-client",
"version": "1.0.1",
"description": "HTTP client for browser, a wrapper for ky.",
"license": "MIT",
"author": {
"name": "Risan Bagja Pradana",
"email": "[email protected]",
"url": "https://risanb.com"
},
"keywords": [
"ajax",
"fetch",
"http",
"ky",
"request",
"xhr"
],
"homepage": "https://github.com/risan/http-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/risan/http-client.git"
},
"bugs": {
"url": "https://github.com/risan/is-empty/issues"
},
"main": "dist/HttpClient.cjs.js",
"browser": "dist/HttpClient.umd.js",
"module": "dist/HttpClient.esm.js",
"engines": {
"node": ">=10"
},
"dependencies": {
"@risan/helpers": "^1.0.3",
"core-js": "3",
"ky": "^0.20.0",
"regenerator-runtime": "^0.13.5"
},
"devDependencies": {
"@babel/core": "^7.10.2",
"@babel/preset-env": "^7.10.2",
"@rollup/plugin-babel": "^5.0.2",
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-json": "^4.0.3",
"@rollup/plugin-node-resolve": "^8.0.0",
"eslint": "^7.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"rollup": "^2.12.0",
"rollup-plugin-terser": "^6.1.0",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"build": "rollup -c",
"watch": "rollup -c -w --environment DEVELOPMENT",
"lint": "eslint ./",
"lint-fix": "eslint ./ --fix",
"test": "jest",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"browserslist": [
"> 0.5%",
"not ie 11"
]
}