-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "magicli",
"version": "0.2.1",
"description": "Automagically generates command-line interfaces (CLI) for any module. Expected options and help sections are created automatically based on parameters names, with support to async. It can be installed globally, in order to *execute* any module, or .js file, via CLI.",
"main": "lib/magicli.js",
"bin": "bin/cli.js",
"scripts": {
"test": "mocha ./tests",
"test-main": "mocha ./tests/main.test.js",
"test-cli": "mocha ./tests/cli.test.js"
},
"author": {
"name": "Diego ZoracKy",
"email": "[email protected]",
"url": "https://github.com/DiegoZoracKy/"
},
"repository": {
"type": "git",
"url": "https://github.com/DiegoZoracKy/magicli"
},
"keywords": [
"bin",
"cli",
"async",
"simple",
"command-line",
"interface"
],
"license": "MIT",
"dependencies": {
"cliss": "0.0.8",
"find-up": "^2.1.0",
"for-each-property": "0.0.4",
"inspect-property": "0.0.7"
},
"devDependencies": {
"mocha": "^4.0.1"
}
}