-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "cli-config",
"version": "0.4.2",
"description": "A 'one call' API maps lib to a command line interface. Merges settings from package, home, project, command options, env. var, overrides into one object. Checks settings schema changes. Optionally runs a lib command. BYO settings parser (e.g YAML).",
"homepage": "https://github.com/tohagan/cli-config",
"author": {
"name": "Tony O'Hagan",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:tohagan/cli-config.git"
},
"keywords": [
"config",
"configuration",
"settings",
"options",
"cli",
"yaml",
"coffee",
"coffeescript",
"command-line",
"default",
"defaults",
"json",
"minimist"
],
"preferGlobal": "false",
"main": "lib/index.js",
"scripts": {
"test": "jasmine-node --color spec"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"strip-json-comments": "0.1.3",
"minimist": "0.2.0",
"assert-plus": "0.1.5"
},
"devDependencies": {
"jasmine-node": "1.14.5"
}
}