-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.56 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
{
"name": "clito",
"version": "0.2.0",
"description": "Simple and well written command line applications helper",
"homepage": "https://github.com/b4dnewz/clito",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"pretest": "npm run lint",
"prepublish": "npm run test",
"lint": "eslint . --fix",
"test": "jest --coverage",
"report": "cat ./coverage/lcov.info | coveralls"
},
"author": {
"name": "b4dnewz",
"email": "[email protected]",
"url": "https://b4dnewz.github.io/"
},
"repository": "b4dnewz/clito",
"license": "MIT",
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"cli",
"bin",
"util",
"utility",
"helper",
"argv",
"command",
"command-line",
"parser",
"option",
"flags",
"input",
"cmd",
"console"
],
"dependencies": {
"indent-string": "^4.0.0",
"read-pkg-up": "^6.0.0",
"yargs-parser": "^14.0.0"
},
"devDependencies": {
"@b4dnewz/temp": "0.0.3",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"jest": "^24.9.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module"
},
"rules": {
"semi": "error"
}
}
}