-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 680 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 680 Bytes
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
{
"name": "@lando/argv",
"description": "A package for handling argv.",
"version": "1.2.0",
"author": "Mike Pirog @pirog",
"license": "MIT",
"repository": "github:lando/argv",
"bugs": "https://github.com/lando/argv/issues/new/choose/",
"homepage": "https://github.com/lando/argv",
"keywords": [
"lando",
"argv"
],
"engines": {
"node": ">=20.0.0"
},
"main": "argv.js",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"chai": "^4",
"eslint": "^7.32.0",
"mocha": "^11",
"nyc": "^14"
},
"scripts": {
"lint": "eslint .",
"test": "nyc mocha --forbid-only \"*.test.js\""
}
}