-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.36 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "gracious",
"version": "1.0.0",
"description": "Facilitate gracious application shutdown by allowing asynchronous code to finish",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"lint-staged": "lint-staged",
"test": "zUnit",
"coverage": "nyc --report html --reporter lcov --reporter text-summary zUnit",
"prepare": "husky install"
},
"author": "Stephen Cresswell",
"license": "ISC",
"devDependencies": {
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"nyc": "^15.1.0",
"prettier": "2.5.1",
"zunit": "^3.2.1"
},
"zUnit": {
"pollute": true
},
"dependencies": {
"uuid": "^8.3.2"
},
"directories": {
"lib": "lib",
"test": "test",
"example": "example"
},
"engines": {
"node": ">=12.0.0"
},
"keywords": [
"gracious",
"graceful",
"drain",
"shutdown",
"task",
"register",
"manager",
"promise",
"typescript"
],
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acuminous/gracious.git"
},
"bugs": {
"url": "https://github.com/acuminous/gracious/issues"
},
"homepage": "https://acuminous.github.io/gracious/"
}