-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 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
{
"name": "userback-cli",
"version": "0.1.0",
"description": "Command-line tool for the Userback REST API. Install as userback-cli, invoke as ub.",
"type": "module",
"bin": {
"ub": "./bin/ub.js"
},
"files": [
"dist/",
"bin/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=24"
},
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test 'test/**/*.test.ts'",
"test:watch": "node --import tsx --test --watch 'test/**/*.test.ts'",
"prepublishOnly": "npm run typecheck && npm test && npm run build",
"preversion": "npm run typecheck && npm run build && npm test",
"postversion": "git push --follow-tags",
"release": "npm version"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"undici": "^6.20.0"
},
"keywords": ["userback", "cli", "feedback"],
"license": "MIT",
"author": "Jim Remsik <jim@beflagrant.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/beflagrant/userback-cli.git"
},
"bugs": {
"url": "https://github.com/beflagrant/userback-cli/issues"
},
"homepage": "https://github.com/beflagrant/userback-cli#readme"
}