-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.47 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
{
"name": "node-cli",
"version": "0.2.5",
"description": "🖍️ Build a beautiful Node.js CLI with colors, pre-build elements and optional JSX support.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"node-cli-examples": "./lib/examples/bin.js"
},
"scripts": {
"examples": "node lib/examples/index.js",
"start": "npm run dev",
"dev": "rimraf lib && tsc --watch",
"build": "rimraf lib && tsc",
"format": "prettier --write src/**",
"format:check": "prettier --check src/**",
"lint": "eslint --fix src --ext .ts,.tsx",
"lint:check": "eslint src --ext .ts,.tsx",
"test": "echo \"No tests written yet.\"",
"publish": "publish",
"prepublishOnly": "npm run format && npm run lint && npm run build && npm run test"
},
"keywords": [
"node",
"cli",
"terminal",
"jsx"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yandeu/node-cli.git"
},
"author": "Yannick Deubel (https://github.com/yandeu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yandeu/node-cli/issues"
},
"homepage": "https://github.com/yandeu/node-cli#readme",
"devDependencies": {
"@types/node": "^14.14.45",
"@yandeu/eslint-config": "^0.0.1",
"@yandeu/prettier-config": "^0.0.1",
"eslint": "^7.22.0",
"prettier": "^2.2.1",
"publish-cli": "^1.7.0",
"rimraf": "^3.0.2",
"typescript": "^4.2.3"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}