-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.44 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
{
"name": "@supercharge/console-io",
"description": "Opinionated UI kit for CLI inputs and outputs",
"version": "2.0.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/console-io/issues"
},
"dependencies": {
"@supercharge/goodies": "~1.11.1",
"@types/prompts": "~2.4.4",
"kleur": "~4.1.5",
"log-update": "~4.0.0",
"prompts": "~2.4.2"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~3.0.0",
"@supercharge/tsconfig": "~4.0.0",
"@types/node": "~20.4.4",
"eslint": "~8.45.0",
"sinon": "~15.2.0",
"tap": "~16.3.7",
"typescript": "~5.1.6"
},
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/console-io",
"keywords": [
"console",
"cli",
"framework",
"nodejs",
"javascript",
"supercharge",
"superchargejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/console-io.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "tap --no-check-coverage --test-ignore=helper*.js",
"posttest": "tap --no-check-coverage --coverage-report=html --no-browser"
}
}