-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "specdd",
"version": "1.0.1",
"description": "SpecDD CLI is a tool for working with SpecDD framework-enabled projects",
"license": "Apache-2.0",
"type": "module",
"packageManager": "yarn@1.22.22",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"bin": {
"specdd": "dist/main.js"
},
"files": [
"dist",
"npm-shrinkwrap.json"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"security:audit": "yarn audit --groups \"dependencies devDependencies\"",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js --coverage",
"prepack": "tsc -p tsconfig.build.json"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"chalk": "5.6.2",
"commander": "14.0.3",
"fast-glob": "3.3.3",
"jszip": "3.10.1",
"openpgp": "6.3.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "22.19.19",
"jest": "29.7.0",
"ts-jest": "29.4.9",
"typescript": "5.9.3"
}
}