-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
66 lines (66 loc) · 1.8 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
{
"author": "mklabs",
"name": "tabtab",
"description": "tab completion helpers, for node cli programs. Inspired by npm completion.",
"main": "lib/index.js",
"files": [
"lib/**/*.{js,sh}"
],
"scripts": {
"test": "mkdirp ~/.config/tabtab && DEBUG='tabtab*' c8 mocha --timeout 5000",
"posttest": "npm run eslint",
"mocha": "DEBUG='tabtab*' mocha --timeout 5000",
"coverage": "c8 report --reporter=text-lcov | coveralls",
"coverage-html": "npm run mocha && c8 report --reporter=html && serve coverage",
"eslint": "eslint lib/ test/",
"watch": "npm-watch",
"readme": "remark readme.md --use toc --output",
"changelog": "auto-changelog -p",
"api": "for file in `echo index.js installer.js prompt.js`; do jsdoc2md lib/$file > api/$file.md; done",
"docs": "npm run api && npm run readme && npm run changelog"
},
"watch": {
"test": "{lib,test}/**/*.js"
},
"devDependencies": {
"auto-changelog": "^1.8.0",
"c8": "^3.2.0",
"coveralls": "^3.0.2",
"eslint-config-mklabs": "^1.0.9",
"inquirer-test": "^2.0.1",
"jsdoc-to-markdown": "^4.0.1",
"mocha": "^5.2.0",
"npm-watch": "^0.4.0",
"remark-cli": "^5.0.0",
"remark-toc": "^5.0.0",
"serve": "^10.0.2"
},
"license": "MIT",
"keywords": [
"terminal",
"tab",
"unix",
"console",
"complete",
"completion"
],
"repository": {
"type": "git",
"url": "https://github.com/mklabs/tabtab.git"
},
"dependencies": {
"debug": "^4.0.1",
"es6-promisify": "^6.0.0",
"inquirer": "^6.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"untildify": "^3.0.3"
},
"auto-changelog": {
"template": "keepachangelog",
"unreleased": true,
"commitLimit": false,
"ignoreCommitPattern": "changelog|readme|^test"
},
"version": "3.0.3"
}