-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.09 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"name": "requesttap-adapter",
"version": "1.0.0",
"description": "Lightweight adapter for API providers to connect with RequestTap",
"main": "src/index.js",
"bin": {
"requesttap-adapter": "./bin/cli.js",
"requesttap-adapter-init": "./bin/init.js"
},
"files": [
"src/",
"bin/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/cli.js",
"test": "jest --coverage",
"test:unit": "jest test/unit",
"test:integration": "jest test/integration"
},
"keywords": [
"requesttap",
"api",
"proxy",
"adapter"
],
"repository": {
"type": "git",
"url": "https://github.com/RequestTap/RequestTap-Adapter.git"
},
"homepage": "https://requesttap.ai",
"license": "MIT",
"dependencies": {
"axios": "^1.7.0",
"cors": "^2.8.5",
"dotenv": "^16.4.0",
"express": "^4.21.0",
"express-rate-limit": "^7.4.0",
"helmet": "^8.0.0"
},
"devDependencies": {
"jest": "^29.7.0",
"supertest": "^7.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"jest": {
"testMatch": ["**/test/**/*.test.js"]
}
}