-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 969 Bytes
/
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
{
"name": "praxios",
"version": "0.0.0-semantic-release",
"description": "wrapper to support corporate proxies in axios",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:Safe-Security/praxios.git",
"author": "Aneesh Relan <[email protected]>",
"license": "MIT",
"dependencies": {
"axios": "^0.21.4",
"tunnel": "^0.0.6",
"@types/tunnel": "^0.0.3"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@types/jest": "^27.0.2",
"husky": "^7.0.2",
"jest": "^27.2.3",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "husky install",
"test:coverage:jest": "jest --silent --ci --json --coverage --testLocationInResults --outputFile=\"report.json\" --forceExit"
}
}