-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.18 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": "fastify-impressions",
"version": "1.0.5",
"description": "A fastify plugin to track impression of routes",
"keywords": [
"fastify",
"node",
"fastify plugin",
"track impressions"
],
"author": "Manjunath Desappa",
"repository": {
"type": "git",
"url": "https://github.com/manju4ever/fastify-impressions.git"
},
"license": "ISC",
"main": "index.js",
"scripts": {
"doc": "markdown-toc -i README.md",
"lint": "standard --fix | snazzy",
"test": "tap __tests__/plugin.spec.js",
"test:ci": "npm run test -- --cov --coverage-report=lcovonly",
"test:coverage": "npm test -- --coverage-report=html",
"prerelease": "npm cit",
"release": "HUSKY=0 standard-version",
"postrelease": "npm run push && npm publish",
"prenext": "npm cit",
"next": "HUSKY=0 standard-version --prerelease",
"postnext": "npm run push && npm publish --tag next",
"push": "git push origin --follow-tags `git rev-parse --abbrev-ref HEAD`"
},
"dependencies": {
"fastify-plugin": "^3.0.1"
},
"devDependencies": {
"fastify": "^3.27.2",
"husky": "^7.0.4",
"tap": "^16.0.0"
},
"tap": {
"check-coverage": false
}
}