This repository has been archived by the owner on Dec 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.29 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "cli-bin",
"version": "0.1.3",
"description": "Compiler executable for the cli toolkit",
"author": "muji <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/freeformsystems/cli-bin"
},
"bugs": {
"url": "https://github.com/freeformsystems/cli-bin/issues",
"email": "muji <[email protected]>"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/freeformsystems/cli-bin/blob/master/LICENSE"
}
],
"directories": {
"bin": "./bin",
"man": "./doc/man"
},
"keywords": [
"cli",
"bin",
"command",
"compiler"
],
"dependencies": {
"async": "^0.9.0",
"cli-command": "~0.8.294",
"cli-compiler": "~0.1.32",
"cli-fs": "~1.0.4",
"cli-help": "0.0.21",
"cli-interface": "^1.0.17",
"cli-logger": "~0.5.34",
"cli-mid-color": "^1.0.7",
"cli-mid-logger": "~1.0.4",
"cli-mid-manual": "~1.0.15",
"cli-types": "~0.1.0",
"cli-util": "^1.1.26",
"ttycolor": "^0.8.13"
},
"devDependencies": {
"chai": "^1.9.1",
"istanbul": "^0.3.2",
"mocha": "^1.21.4"
},
"engine": [
"node >= 0.10.21"
],
"scripts": {
"docs": "npm run manual && npm run readme && npm run cheatsheet",
"clean-man": "rm -fv ./doc/man/*.1",
"manual": "npm run clean-man && NODE_ENV=devel manpage --output ./doc/man ./bin/cli",
"readme": "mdp --force -v",
"test": "NODE_ENV=test istanbul cover _mocha -- -u bdd --recursive --bail --reporter list -A test/spec"
},
"cli": {
"compiler": {
"input": [
"./lib/cli.md"
],
"output": "./lib/clic.js"
}
},
"mdp": {
"title": "Cli",
"pedantic": true,
"include": "doc/readme",
"require": "lib",
"links": "links.md",
"toc": "Table of Contents",
"base": "https://github.com/freeformsystems/cli-bin",
"partial": [
{
"inc": [
"introduction.md",
"install.md",
"test.md"
]
},
{
"title": "Usage",
"bin": "cli",
"type": "code",
"stderr": true,
"trim": true
},
{
"title": "Help",
"bin": "cli --help",
"type": "code",
"stderr": true,
"trim": true
},
{
"inc": [
"license.md"
]
}
]
}
}