-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "toxiproxy-node-client",
"version": "4.1.0",
"description": "Node Client for Toxiproxy",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "run-s clean build:ts",
"build:ts": "tsc",
"clean": "rimraf ./dist",
"test": "jest --runInBand",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"typecheck": "tsc --noEmit",
"prepublish": "run-s build lint test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihsw/toxiproxy-node-client.git"
},
"author": "Adrian Parker <ihsw.aparker@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ihsw/toxiproxy-node-client/issues"
},
"homepage": "https://github.com/ihsw/toxiproxy-node-client#readme",
"engines": {
"node": ">=18"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.5",
"@types/node": "^18.19.130",
"eslint": "^10.2.1",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.0"
}
}