-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 KB
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
{
"name": "http-request-plus",
"version": "1.0.3",
"license": "ISC",
"description": "Small package that provides a promise-based, stream-oriented wrapper around the http and https modules",
"keywords": [
"client",
"fetch",
"http",
"https",
"json",
"promise",
"request",
"stream",
"wrapper"
],
"homepage": "https://github.com/JsCommunity/http-request-plus",
"bugs": "https://github.com/JsCommunity/http-request-plus/issues",
"repository": {
"type": "git",
"url": "https://github.com/JsCommunity/http-request-plus"
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net"
},
"engines": {
"node": ">=14.18"
},
"devDependencies": {
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.3",
"test": "^3.2.1"
},
"scripts": {
"postversion": "npm publish",
"prepare": "husky install",
"test": "node--test && true"
},
"lint-staged": {
"*": [
"npm test",
"prettier --ignore-unknown --write"
],
"*.{{,c,m}j,t}s{,x}": "eslint --ignore-pattern '!*'"
},
"dependencies": {
"@xen-orchestra/log": "^0.6.0"
}
}