-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.29 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.29 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
{
"name": "@kearisp/cli",
"version": "2.0.9",
"license": "MIT",
"author": "Kris Papercut <krispcut@gmail.com>",
"description": "Command line interface for node.js",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"cli",
"parser"
],
"homepage": "https://github.com/kearisp/kp-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kearisp/kp-cli.git"
},
"bugs": {
"url": "https://github.com/kearisp/kp-cli/issues"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc --watch",
"test": "KP_LOG=disable jest --colors --no-coverage",
"test-watch": "jest --colors --coverage --no-cache --watchAll",
"test-watch:cli": "jest --colors --watchAll --runTestsByPath ./src/makes/Cli.spec.ts",
"test-watch:command": "jest --colors --watchAll --runTestsByPath ./src/makes/Command.spec.ts",
"test-watch:parser": "jest --colors --watchAll --runTestsByPath ./src/makes/Parser.spec.ts"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}