forked from Rainmen-xia/rod-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.9 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
71
72
73
74
75
76
77
78
{
"name": "rod-cli",
"version": "0.0.16",
"description": "ROD CLI - Rule-Oriented Development toolkit for specification-driven development",
"main": "dist/cli.js",
"bin": {
"rod": "dist/cli.js"
},
"directories": {
"test": "tests"
},
"scripts": {
"build": "tsc",
"dev": "ts-node src/cli.ts",
"test": "jest",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"test:e2e": "jest --selectProjects e2e",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"cli",
"rule-oriented-development",
"rod",
"specification",
"spec-driven-development",
"template",
"ai-assistant"
],
"author": "rainmen-xia",
"license": "MIT",
"dependencies": {
"@koa/cors": "^5.0.0",
"@koa/router": "^14.0.0",
"@types/koa": "^3.0.0",
"@types/koa__router": "^12.0.4",
"@types/koa-bodyparser": "^4.3.12",
"chalk": "^4.1.2",
"commander": "^11.0.0",
"koa": "^3.0.1",
"koa-bodyparser": "^4.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/koa__cors": "^5.0.0",
"@types/nock": "^11.1.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"jest": "^29.7.0",
"nock": "^13.3.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.2.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"templates/**/*",
"scripts/**/*",
"memory/**/*",
"README.md",
"LICENSE"
]
}