-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.52 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
{
"name": "n-cli",
"version": "1.2.21",
"description": "a usefull toolset for node commandline applications",
"homepage": "",
"author": {
"name": "s-a",
"email": "stephan.ahlf@googlemail.com",
"url": "https://github.com/s-a"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"terminal",
"commandline",
"user",
"interface",
"tools"
],
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^6.8.0",
"mocha": "^10.6.0",
"nyc": "^17.0.0",
"should": "^13.2.3"
},
"repository": "https://github.com/s-a/n-cli.git",
"scripts": {
"docs:lib": "jsdox lib/index.js && cp ./output/index.md ./API.md",
"docs": "npm run docs:lib",
"lcov-file": "node node_modules/nyc/bin/nyc.js report --reporter=lcov",
"coverage": "node node_modules/nyc/bin/nyc.js --reporter=html --reporter=text mocha && npm run lcov-file",
"coveralls": "cat ./coverage/lcov.info | node node_modules/coveralls/bin/coveralls.js",
"eslint": "node node_modules/eslint/bin/eslint.js ./lib",
"debug": "iron-node node_modules/mocha/bin/_mocha",
"prepublish": "npm test",
"bump": "npm test && npm version patch && git push && git push --tags && npm publish",
"mocha": "node node_modules/mocha/bin/_mocha",
"test": "npm run eslint && npm run coverage"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"marked": "^13.0.2",
"marked-terminal": "^7.1.0",
"minimist": "^1.2.8",
"pretty-error": "^4.0.0",
"user-appdata": "^0.1.2"
}
}