-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "dashdash",
"description": "A light, featureful and explicit option parsing library.",
"version": "2.0.0",
"author": "Trent Mick <[email protected]> (http://trentm.com)",
"keywords": [
"option",
"parser",
"parsing",
"cli",
"command",
"args",
"bash",
"completion"
],
"repository": {
"type": "git",
"url": "git://github.com/trentm/node-dashdash.git"
},
"main": "./lib/dashdash.js",
"files": [
"lib",
"etc"
],
"dependencies": {
"assert-plus": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1",
"tap": "^15.0.9"
},
"engines": {
"node": ">=10.x"
},
"scripts": {
"test": "tap test/*.test.js",
"check": "eslint lib test",
"lint": "eslint --rule 'prettier/prettier: off' lib test",
"fmt": "eslint --fix lib test"
},
"license": "MIT"
}