-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "@gustavnikolaj/async-main-wrap",
"version": "4.0.0",
"description": "Simple CLI tool wrapper.",
"main": "lib/asyncMainWrap.js",
"scripts": {
"coverage": "nyc mocha",
"lint": "eslint . && prettier --check '**/*.js'",
"test": "mocha"
},
"author": "Gustav Nikolaj <gustavnikolaj@gmail.com>",
"license": "ISC",
"repository": "github:gustavnikolaj/async-main-wrap",
"files": [
"lib/asyncMainWrap.js"
],
"devDependencies": {
"@gustavnikolaj/frame-popper": "^1.0.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"esm": "^3.2.22",
"glob": "^7.1.3",
"invariant": "^2.2.4",
"mocha": "^9.0.2",
"nyc": "^15.0.0",
"prettier": "^2.0.4",
"unexpected": "^12.0.0",
"yargs": "^17.0.1"
},
"nyc": {
"cache": true,
"reporter": [
"html",
"lcov",
"text"
]
}
}