-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.68 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.68 KB
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
69
70
71
72
73
74
75
76
{
"name": "@slimio/arg-parser",
"version": "0.4.0",
"description": "SlimIO argument parser",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=12"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-push": "cross-env eslint index.js && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"ava": {
"require": [
"esm"
],
"files": [
"test/**/*.js",
"!test/spawn/**.js"
]
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@escommunity/minami": "^1.0.0",
"@slimio/eslint-config": "^4.1.0",
"@slimio/is": "^1.5.0",
"@slimio/psp": "^0.12.1",
"ava": "^3.13.0",
"benchmark": "^2.1.4",
"c8": "^7.3.5",
"codecov": "^3.8.1",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"esm": "^3.2.25",
"husky": "^4.3.0",
"jsdoc": "^3.6.6",
"pkg-ok": "^2.3.1"
},
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "cross-env psp && c8 -r=\"lcov\" ava --verbose",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose",
"coverage": "codecov",
"benchmark": "node benchmark/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/ArgParser.git"
},
"keywords": [
"SlimIO",
"ArgParser",
"argv",
"secure",
"reliable",
"argument",
"parser"
],
"files": [
"index.js",
"index.d.ts",
"example/*.js",
"benchmark/index.js"
],
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/ArgParser/issues"
},
"homepage": "https://github.com/SlimIO/ArgParser#readme"
}