-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.3 KB
/
package.json
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
{
"name": "@hexancore/cli",
"version": "0.1.3",
"engines": {
"node": ">=22"
},
"engine-strict": true,
"description": "CLI of Hexancore framework",
"author": "Andrzej Wasiak",
"license": "MIT",
"main": "./lib/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hexancore/cli.git"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/hexancore/cli",
"packageManager": "[email protected]",
"scripts": {
"hcli": "node --optimize_for_size --max_old_space_size=460 --gc_interval=100 ./lib/main.js",
"global": "npm i -g --force",
"build": "rm -fr ./lib && tsc -p tsconfig.build.json",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,test}/**/*.ts\" --fix",
"test": "jest --config .jestrc.json --runInBand",
"test:clearCache": "jest --config .jestrc.json --clearCache",
"test:unit": "jest --config .jestrc.json --runInBand --group=unit",
"test:watch": "jest --config .jestrc.json --runInBand --watchAll",
"test:cov": "jest --config .jestrc.json --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --config .jestrc.json --runInBand"
},
"dependencies": {
"@hexancore/common": "^0.15.0",
"chalk": "4",
"commander": "^12.0.0",
"enquirer": "^2.4.1",
"eta": "^3.2.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"inversify": "^6.0.2",
"reflect-metadata": "^0.1.13",
"ts-morph": "^21.0.1",
"tslib": "^2.6.3"
},
"devDependencies": {
"@commander-js/extra-typings": "^12.0.0",
"@hexancore/mocker": "^1.1.2",
"@swc/core": "^1.3.101",
"@swc/jest": "^0.2.29",
"@types/fs-extra": "^9.0.4",
"@types/jest": "27.0.*",
"@types/node": "^20.10.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.3.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "29.6.*",
"jest-docblock": "29.4.*",
"jest-expect-message": "^1.1.3",
"jest-runner": "29.6.*",
"jest-runner-groups": "^2.2.0",
"mock-fs": "^5.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "5.6.2"
},
"files": [
"bin",
"lib",
"templates"
]
}