-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.01 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
{
"name": "@autotelic/fastify-webhooks",
"version": "0.1.1",
"description": "A webhooks plugin for fastify applications",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "c8 --100 ava",
"lint": "standard",
"fix": "standard --fix",
"validate": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/autotelic/fastify-webhooks.git"
},
"keywords": [],
"author": "Autotelic Development Ltd <info@autotelic.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/autotelic/fastify-webhooks/issues"
},
"homepage": "https://github.com/autotelic/fastify-webhooks#readme",
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"ava": "^4.0.1",
"c8": "^7.10.0",
"fastify": "^3.0.0",
"fastify-cli": "^2.5.1",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"standard": "^16.0.3"
},
"lint-staged": {
"*.{js,jsx}": [
"npm run fix"
]
}
}