forked from fastify/fastify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 2.99 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "fastify",
"version": "0.39.1",
"description": "Fast and low overhead web framework, for Node.js",
"main": "fastify.js",
"typings": "fastify.d.ts",
"scripts": {
"lint": "standard | snazzy",
"unit": "tap -j4 test/*.test.js test/*/*.test.js",
"typescript": "tsc test/types/index.ts --target es6 --module commonjs --noEmit --noImplicitThis",
"test": "npm run lint && npm run unit && npm run typescript",
"coverage": "npm run unit -- --cov --coverage-report=html",
"coveralls": "npm run unit -- --cov",
"bench": "branchcmp -r 2 -g -s \"npm run benchmark\"",
"benchmark": "npx concurrently -k -s first \"node ./examples/simple.js\" \"npx autocannon -c 100 -d 5 -p 10 localhost:3000/\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify.git"
},
"keywords": [
"web",
"framework",
"json",
"schema",
"open",
"api"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"contributors": [
{
"name": "Tomas Della Vedova",
"url": "http://delved.org",
"author": true
},
{
"name": "Tommaso Allevi",
"email": "tomallevi@gmail.com"
},
{
"name": "Dustin Deus",
"url": "http://starptech.de",
"email": "deusdustin@gmail.com"
},
{
"name": "Luciano Mammino",
"url": "https://loige.co"
},
{
"name": "Evan Shortiss",
"email": "evanshortiss@gmail.com"
},
{
"name": "James Sumners",
"url": "https://james.sumners.info"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify/issues"
},
"homepage": "https://github.com/fastify/fastify#readme",
"engines": {
"node": ">=4.5"
},
"devDependencies": {
"@types/node": "^8.5.8",
"JSONStream": "^1.0.3",
"autocannon": "^0.16.5",
"branch-comparer": "^0.4.0",
"concurrently": "^3.5.1",
"cors": "^2.8.4",
"coveralls": "^3.0.0",
"dns-prefetch-control": "^0.1.0",
"fast-json-body": "^1.1.0",
"fastify-plugin": "^0.2.1",
"frameguard": "^3.0.0",
"h2url": "^0.1.2",
"helmet": "^3.9.0",
"hide-powered-by": "^1.0.0",
"hsts": "^2.1.0",
"http-errors": "^1.6.2",
"ienoopen": "^1.0.0",
"joi": "~11.3.4",
"pre-commit": "^1.2.2",
"semver": "^5.4.1",
"serve-static": "^1.13.1",
"simple-get": "^2.7.0",
"snazzy": "^7.0.0",
"split2": "^2.2.0",
"standard": "^10.0.3",
"tap": "^11.0.0",
"then-sleep": "^1.0.1",
"typescript": "^2.6.2",
"x-xss-protection": "^1.0.0"
},
"dependencies": {
"@types/pino": "^4.7.0",
"abstract-logging": "^1.0.0",
"ajv": "^6.0.1",
"avvio": "^5.0.0",
"fast-iterator": "^0.2.1",
"fast-json-stringify": "^0.17.0",
"find-my-way": "^1.9.0",
"flatstr": "^1.0.5",
"light-my-request": "^2.0.1",
"middie": "^3.0.0",
"pino": "^4.10.2",
"pump": "^2.0.0"
},
"greenkeeper": {
"ignore": [
"boom",
"joi",
"@types/node",
"@types/pino"
]
}
}