-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.78 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.78 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
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
{
"name": "rlx",
"version": "0.3.3",
"description": "Command line interface for couchdb",
"author": "muji <noop@xpm.io>",
"preferGlobal": true,
"homepage": "https://github.com/tmpfs/rlx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tmpfs/rlx"
},
"bugs": {
"url": "https://github.com/tmpfs/rlx/issues"
},
"directories": {
"bin": "./bin",
"man": "./doc/man"
},
"dependencies": {
"archy": "~1.0.0",
"async": "~1.5.2",
"async-validate": "~0.13.0",
"cdb": "~0.3.2",
"circular": "~1.0.5",
"cli-command": "~0.8.300",
"cli-converter-util": "~1.0.1",
"cli-error": "~0.5.7",
"cli-fs": "~1.0.4",
"cli-help": "~0.1.1",
"cli-input": "~0.2.0",
"cli-interface": "~1.0.19",
"cli-logger": "~0.5.40",
"cli-mid-color": "~1.0.10",
"cli-mid-logger": "~1.0.10",
"cli-mid-manual": "~1.0.16",
"cli-native": "~1.0.0",
"cli-property": "~0.0.9",
"cli-rc": "~1.0.12",
"cli-regexp": "~0.1.2",
"cli-util": "~1.1.26",
"couchdb-log-parse": "0.0.4",
"jslint": "~0.9.6",
"jsonlint": "~1.6.2",
"minimatch": "~3.0.0",
"mkdirp": "~0.5.1",
"ncp": "~2.0.0",
"recursive-readdir": "~1.3.0",
"request": "~2.69.0",
"ttycolor": "~0.9.0",
"uuid": "~2.0.1",
"which": "~1.2.4"
},
"devDependencies": {
"chai": "~3.5.0",
"coveralls": "~2.11.6",
"istanbul": "~0.4.2",
"mocha": "~2.4.5"
},
"scripts": {
"lint": "jshint . && jscs .",
"docs": "npm run manual && npm run readme && npm run cheatsheet",
"clean-man": "rm -fv ./doc/man/*.1",
"manual": "npm run clean-man && manpage --output ./doc/man ./bin/rlx",
"cheatsheet": "./sbin/cheatsheet > doc/cheatsheet.md && mdp -i doc/cheatsheet.json -o doc/cheatsheet.md -v --force",
"readme": "mdp --force -v",
"pretest": "rm -rf ./target && mkdir -p ./target/qt ./target/usr ./target/docs/pull && ./bin/rlx alias init 2> /dev/null || true",
"test": "NODE_ENV=test mocha ${SPEC:-test/spec}",
"cover": "npm run pretest && NODE_ENV=test istanbul cover _mocha -- ${SPEC:-test/spec}",
"qt": "npm run pretest && ./test/bin/qt",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"mdp": {
"title": "rlx",
"pedantic": true,
"include": "doc/readme",
"require": "lib",
"links": "links.md",
"toc": "Table of Contents",
"base": "https://github.com/tmpfs/rlx",
"partial": [
{
"inc": [
"introduction.md",
"install.md",
"quick-start.md",
"documentation.md"
]
},
{
"title": "Usage",
"bin": "rlx",
"type": "code",
"trim": true
},
{
"inc": [
"developer.md"
]
}
]
}
}