blob: 22261897cbbfc0d67e1cee5fafdd79ce15ba782d [file] [log] [blame]
Samuel Shuert274a4d62023-12-01 15:04:55 -05001{
2 "name": "arg",
3 "version": "4.1.3",
4 "description": "Another simple argument parser",
5 "main": "index.js",
6 "types": "index.d.ts",
7 "repository": "zeit/arg",
8 "author": "Josh Junon <junon@zeit.co>",
9 "license": "MIT",
10 "files": [
11 "index.js",
12 "index.d.ts"
13 ],
14 "scripts": {
15 "pretest": "xo",
16 "test": "WARN_EXIT=1 jest --coverage -w 2"
17 },
18 "xo": {
19 "rules": {
20 "complexity": 0,
21 "max-depth": 0,
22 "no-div-regex": 0
23 }
24 },
25 "devDependencies": {
26 "chai": "^4.1.1",
27 "jest": "^20.0.4",
28 "xo": "^0.18.2"
29 }
30}