-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 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
54
55
56
57
58
59
60
61
62
{
"name": "@rowno/http-stub",
"version": "3.0.0",
"description": "Simple HTTP stubbing library for Node.js",
"author": "Roland Warmerdam (https://roland.codes)",
"keywords": [
"http",
"mock",
"stub",
"node"
],
"repository": "Rowno/http-stub",
"license": "MIT",
"main": "src/index.js",
"types": "src/index.d.ts",
"files": [
"src"
],
"scripts": {
"test": "yarn lint && ava",
"lint": "eslint '**/*.js'",
"prepare": "husky install"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@hapi/joi": "^17.1.1",
"micro": "^9.3.3",
"openssl-self-signed-certificate": "^1.1.6"
},
"devDependencies": {
"ava": "^3.12.1",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"got": "^11.7.0",
"husky": "^8.0.0",
"lint-staged": "^15.1.0",
"prettier": "^3.1.0",
"selfsigned": "^2.4.1"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"es2021": true,
"node": true
}
},
"prettier": {
"semi": false,
"singleQuote": true
}
}