-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "before-after-hook",
"type": "module",
"version": "0.0.0-development",
"description": "asynchronous before/error/after hooks for internal functionality",
"exports": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts",
"lib"
],
"scripts": {
"test": "npm run test:code && npm run test:tsc && npm run test:tsd && npm run lint",
"test:code": "c8 --100 ava test/*.test.js",
"test:tsc": "tsc --allowJs --noEmit --esModuleInterop --skipLibCheck --lib es2020 index.js",
"test:tsd": "tsd",
"lint": "prettier --check \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
"lint:fix": "prettier --write \"*.{js,json,ts,md}\" \".github/**/*.yml\"",
"coverage": "c8 report --reporter html",
"postcoverage": "open-cli coverage/index.html"
},
"repository": "github:gr2m/before-after-hook",
"keywords": [
"hook",
"hooks",
"api"
],
"author": "Gregor Martynus",
"license": "Apache-2.0",
"devDependencies": {
"ava": "^4.3.3",
"c8": "^7.12.0",
"prettier": "^2.0.0",
"sinon": "^14.0.1",
"tsd": "^0.24.1",
"typescript": "^4.8.4"
},
"release": {
"branches": [
"+([0-9]).x",
"main",
"next",
{
"name": "beta",
"prerelease": true
}
]
},
"renovate": {
"extends": [
"github>gr2m/.github"
]
}
}