-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.68 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@commandlayer/router",
"version": "1.0.0",
"description": "Deterministic CommandLayer router runtime orchestrating the 10 Commons verbs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"cl-router": "dist/cli/cl-router.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest --runInBand",
"test:watch": "jest --watch",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"commandlayer",
"router",
"commons",
"deterministic",
"receipts",
"ed25519"
],
"author": "CommandLayer",
"license": "MIT",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"commander": "^11.1.0",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.18.0",
"@typescript-eslint/parser": "^6.18.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"@types/supertest": "^6.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/test/**/*.test.ts"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/cli/**"
]
},
"engines": {
"node": ">=20.0.0"
}
}