mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 07:57:19 -05:00
36 lines
850 B
JSON
36 lines
850 B
JSON
{
|
|
"name": "blackroad-info-service",
|
|
"version": "1.0.0",
|
|
"description": "BlackRoad Operating System metadata service.",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
|
|
"build": "tsc -p tsconfig.json",
|
|
"start": "node dist/index.js",
|
|
"test": "jest --runInBand"
|
|
},
|
|
"keywords": [
|
|
"blackroad",
|
|
"service",
|
|
"metadata"
|
|
],
|
|
"author": "BlackRoad OS",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.19.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.14.2",
|
|
"@types/supertest": "^6.0.3",
|
|
"jest": "^29.7.0",
|
|
"supertest": "^6.3.4",
|
|
"ts-jest": "^29.1.2",
|
|
"ts-node-dev": "^2.0.0",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|