forked from fastify/light-my-request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "light-my-request",
"version": "5.8.0",
"description": "Fake HTTP injection library",
"main": "index.js",
"types": "types/index.d.ts",
"dependencies": {
"cookie": "^0.5.0",
"process-warning": "^2.0.0",
"set-cookie-parser": "^2.4.1"
},
"devDependencies": {
"@fastify/ajv-compiler": "^3.1.0",
"@fastify/pre-commit": "^2.0.2",
"@types/node": "^18.0.0",
"benchmark": "^2.1.4",
"end-of-stream": "^1.4.4",
"express": "^4.17.1",
"form-auto-content": "^3.0.0",
"form-data": "^4.0.0",
"semver": "^7.3.5",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.25.0"
},
"scripts": {
"benchmark": "node test/benchmark.js",
"coverage": "npm run unit -- --cov --coverage-report=html",
"lint": "standard",
"test": "npm run lint && npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap"
},
"repository": {
"type": "git",
"url": "https://github.com/fastify/light-my-request.git"
},
"keywords": [
"http",
"inject",
"fake",
"request",
"server"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/fastify/light-my-request/issues"
},
"homepage": "https://github.com/fastify/light-my-request/blob/master/README.md",
"standard": {
"ignore": [
"test/benchmark.js"
]
}
}