-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
42
43
{
"name": "oas-telemetry-tester",
"version": "1.0.0",
"description": "Tests for oas-tools/oas-telemetry using node.js and ts",
"main": "dist/index.js",
"engines": {
"node": ">18.0.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node dist/indexRegistry.js",
"start:registry": "npm run build && node dist/indexRegistry.js",
"start:jaeger": "npm run build && node dist/indexKsApi.js",
"dev": "nodemon",
"patch": "patch-package",
"postinstall": "patch-package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motero2k/oas-telemetry-tester.git"
},
"keywords": [],
"author": "Manuel Otero",
"license": "ISC",
"bugs": {
"url": "https://github.com/motero2k/oas-telemetry-tester/issues"
},
"homepage": "https://github.com/motero2k/oas-telemetry-tester#readme",
"devDependencies": {
"@types/node": "^22.5.0",
"nodemon": "^3.1.4",
"patch-package": "^8.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"dependencies": {
"apipecker": "^1.3.1",
"axios": "^1.7.5",
"dotenv": "^16.4.5",
"jsonwebtoken": "^9.0.2"
}
}