-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "clarch",
"version": "0.0.10",
"main": "index.js",
"description": "",
"license": "MIT",
"bin": {
"clarch": "./dist/bin/clarch.js"
},
"files": [
"dist"
],
"scripts": {
"test": "npx jest --config ./jest.config.js",
"test:dev": "npm run test -- --watchAll --runInBand",
"test:cov": "npm run test -- --coverage",
"start": "node --inspect -r ts-node/register bin/clarch.ts",
"build": "node build.js",
"lint": "eslint --ext .js,.ts src",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"dependencies": {
"@inquirer/prompts": "^5.0.1",
"commander": "^12.0.0"
},
"peerDependencies": {},
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"esbuild": "^0.20.2",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.2.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}