This repository was archived by the owner on Nov 6, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"name": "@foxify/inject",
"version": "1.1.0",
"description": "Fake HTTP injection library",
"author": "Ardalan Amini <ardalanamini22@gmail.com> [https://ardalanamini.com]",
"license": "MIT",
"homepage": "https://github.com/foxifyjs/inject#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/foxifyjs/inject.git"
},
"bugs": {
"url": "https://github.com/foxifyjs/inject/issues"
},
"keywords": [
"http",
"inject",
"fake",
"request",
"server"
],
"engines": {
"node": ">=14"
},
"types": ".build/cjs/index.d.ts",
"main": ".build/cjs/index.js",
"files": [
".build"
],
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- --watch",
"lint": "eslint src __tests__",
"lint:format": "prettier -w src __tests__ && eslint --fix src __tests__",
"test": "node --expose-gc node_modules/jest/bin/jest",
"test:coverage": "npm test -- --coverage",
"test:ci": "npm run test:coverage -- --ci --runInBand --verbose --logHeapUsage --no-cache"
},
"dependencies": {
"readable-stream": "^3.6.0"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.30",
"@types/readable-stream": "^2.3.13",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
}
}