-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "toxiproxy-node-client",
"version": "4.0.0",
"description": "Node Client for Toxiproxy",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"clean": "rimraf ./dist",
"test": "jest --runInBand",
"lint": "eslint '**/*.{ts,tsx}'",
"lint:fix": "eslint --fix '**/*.{ts,tsx}'",
"build": "npm run clean && tsc && echo built",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihsw/toxiproxy-node-client.git"
},
"author": "Adrian Parker <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ihsw/toxiproxy-node-client/issues"
},
"homepage": "https://github.com/ihsw/toxiproxy-node-client#readme",
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/eslint-plugin-tslint": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "~5.1.3"
},
"dependencies": {
"axios": "^1.7.2"
}
}