-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "fastify-hide-powered-by",
"version": "0.4.0",
"description": "Fastify plugin to remove the X-Powered-By header",
"main": "src/index.js",
"scripts": {
"benchmark": "node benchmarks/benchmark.js",
"fmt": "prettier src/**.js test/**.js --write",
"lint": "eslint src test",
"ut": "ava --verbose --color | tap-diff",
"cov": "nyc npm run ut",
"report": "nyc report --reporter=text-lcov | coveralls",
"test": "npm run lint && npm run cov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poppinlp/fastify-hide-powered-by.git"
},
"keywords": [
"fastify",
"fastify-plugin",
"helmet",
"hide-powered-by"
],
"files": [
"src"
],
"author": "PoppinL",
"license": "MIT",
"bugs": {
"url": "https://github.com/poppinlp/fastify-hide-powered-by/issues"
},
"homepage": "https://github.com/poppinlp/fastify-hide-powered-by#readme",
"engines": {
"node": ">= 6"
},
"dependencies": {
"fastify-plugin": "^1.6.1"
},
"devDependencies": {
"autocannon": "^2.4.1",
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"eslint": "^5.16.0",
"eslint-config-handsome": "^0.5.0",
"eslint-config-prettier": "^2.10.0",
"fastify": "^1.14.6",
"hide-powered-by": "^1.0.0",
"nyc": "^12.0.2",
"prettier": "^1.19.1",
"tap-diff": "^0.1.1"
},
"peerDependencies": {
"fastify": "^1.14.6"
}
}