-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 905 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 905 Bytes
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
{
"name": "cli-starter",
"version": "1.0.1",
"description": "A Command Line Interface starter boiler plate",
"main": "bin/cli.js",
"bin": {
"cli-starter": "bin/cli.js"
},
"scripts": {
"test": "echo \"No test specified\"",
"dev": "node bin/cli.js"
},
"engines": {
"node": ">=10.15.3"
},
"author": {
"name": "Thomas G. aka Drozerah",
"email": "drozerah@gmail.com",
"url": "https://github.com/Drozerah"
},
"license": "ISC",
"homepage": "https://github.com/Drozerah/cli-starter.git",
"repository": {
"type": "git",
"url": "https://github.com/Drozerah/cli-starter.git"
},
"bugs": {
"url": "https://github.com/Drozerah/cli-starter/issues"
},
"keywords": [
"cli",
"cli-starter",
"command-line",
"starter",
"npm",
"nodejs",
"node-cli",
"boilerplater",
"utility-application"
],
"private": true
}