forked from ruvnet/rUv-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.05 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.05 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
{
"name": "create-sparc",
"version": "1.2.2",
"description": "NPX package to scaffold new projects with SPARC methodology structure",
"main": "src/index.js",
"type": "commonjs",
"bin": {
"create-sparc": "bin/index.js"
},
"scripts": {
"test": "jest",
"test:unit": "jest __tests__/unit",
"test:integration": "jest __tests__/integration",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint ."
},
"keywords": [
"sparc",
"scaffold",
"generator",
"project",
"template",
"npx"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.1",
"fs-extra": "^11.1.1",
"inquirer": "^8.2.5",
"marked": "^4.3.0",
"marked-terminal": "^5.2.0",
"ora": "^5.4.1"
},
"devDependencies": {
"eslint": "^8.38.0",
"jest": "^29.5.0"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin/",
"src/",
".roo/",
".roomodes",
"templates/",
"aiGI/",
"LICENSE",
"README.md"
]
}