-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.9 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
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "exign",
"version": "0.16.1",
"description": "egress proxy to insert signature to outgoing HTTP Requests",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"exign": "./dist/main.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "npx tsc",
"preserver": "node dist/main.js init",
"server": "node dist/main.js",
"preserver-dev": "ts-node --files src/main.ts init",
"server-dev": "ts-node --files src/main.ts",
"test": "jest"
},
"author": "I Putu Ariyasa",
"license": "ISC",
"dependencies": {
"@isaacs/ttlcache": "^1.0.3",
"@outtacontrol/socks": "^1.0.3",
"cacheable-lookup": "^7.0.0",
"dnsjack": "^1.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"flat": "^5.0.2",
"generic-pool": "^3.9.0",
"http-proxy": "^1.18.1",
"http-signature": "^1.3.6",
"level": "^8.0.0",
"logfmt": "^1.3.2",
"node-forge": "^1.3.1",
"simple-git": "^3.16.0",
"sshpk": "^1.17.0",
"tslib": "^2.4.1",
"ulid": "^2.3.0"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.0",
"@types/express": "^4.17.13",
"@types/flat": "^5.0.2",
"@types/http-proxy": "^1.17.9",
"@types/jest": "^28.1.1",
"@types/logfmt": "^1.2.2",
"@types/node": "^17.0.41",
"@types/node-forge": "^1.0.2",
"@types/sshpk": "^1.17.0",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"chai-http": "^4.3.0",
"eslint": "^8.17.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.2",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28.1.1",
"nock": "^13.2.6",
"rimraf": "^3.0.2",
"supertest": "^6.2.3",
"ts-jest": "^28.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.7.3"
}
}