-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "simple-flags",
"version": "1.2.4",
"description": "Simple and practical module to generate and organize command line flags",
"main": "lib/simpleFlags.js",
"scripts": {
"test": "node test.js 'Philippe Assis' ${HOME} --site www.philippeassis.com --github=https://github.com/PhilippeAssis -d --coffee -not -c 'Brazil=Fora Temer'",
"help": "node test.js -h"
},
"keywords": [
"flags",
"flag",
"cli",
"args",
"arguments",
"opt",
"opts"
],
"author": "Philippe Assis <assis@philippeassi.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/PhilippeAssis/node-simple-flags.git"
},
"bugs": {
"url": "https://github.com/PhilippeAssis/node-simple-flags/issues"
},
"homepage": "https://github.com/PhilippeAssis/node-simple-flags#readme",
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
},
"dependencies": {
"colors": "^1.1.2"
}
}