forked from fastify/fastify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.26 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
120
121
122
123
124
125
126
{
"name": "fastify",
"version": "1.9.0",
"description": "Fast and low overhead web framework, for Node.js",
"main": "fastify.js",
"typings": "fastify.d.ts",
"scripts": {
"lint": "standard | snazzy && npm run lint:typescript",
"lint:typescript": "standard --parser typescript-eslint-parser --plugin typescript test/types/*.ts fastify.d.ts",
"unit": "tap -j4 test/*.test.js test/*/*.test.js",
"typescript": "tsc --project ./test/types/tsconfig.json",
"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 <[email protected]>",
"contributors": [
{
"name": "Tomas Della Vedova",
"url": "http://delved.org",
"author": true
},
{
"name": "Tommaso Allevi",
"email": "[email protected]"
},
{
"name": "Dustin Deus",
"url": "http://starptech.de",
"email": "[email protected]"
},
{
"name": "Luciano Mammino",
"url": "https://loige.co"
},
{
"name": "Evan Shortiss",
"email": "[email protected]"
},
{
"name": "James Sumners",
"url": "https://james.sumners.info"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify/issues"
},
"homepage": "https://www.fastify.io/",
"engines": {
"node": ">=6"
},
"devDependencies": {
"@types/node": "^10.5.1",
"JSONStream": "^1.3.3",
"autocannon": "^2.3.0",
"branch-comparer": "^0.4.0",
"concurrently": "^3.6.0",
"cors": "^2.8.4",
"coveralls": "^3.0.2",
"dns-prefetch-control": "^0.1.0",
"eslint-plugin-typescript": "^0.12.0",
"fast-json-body": "^1.1.0",
"fastify-plugin": "^1.1.3",
"form-data": "^2.3.2",
"frameguard": "^3.0.0",
"h2url": "^0.1.2",
"helmet": "^3.12.1",
"hide-powered-by": "^1.0.0",
"hsts": "^2.1.0",
"http-errors": "^1.6.3",
"ienoopen": "^1.0.0",
"joi": "~11.4.0",
"pre-commit": "^1.2.2",
"proxyquire": "^2.0.1",
"pump": "^3.0.0",
"semver": "^5.5.0",
"send": "^0.16.2",
"serve-static": "^1.13.2",
"simple-get": "^3.0.2",
"snazzy": "^7.1.1",
"split2": "^3.0.0",
"standard": "^11.0.1",
"tap": "^12.0.0",
"then-sleep": "^1.0.1",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^18.0.0",
"x-xss-protection": "^1.1.0"
},
"dependencies": {
"@types/pino": "^4.16.0",
"abstract-logging": "^1.0.0",
"ajv": "^6.5.2",
"avvio": "^5.6.0",
"end-of-stream": "^1.4.1",
"fast-json-stringify": "^1.5.4",
"find-my-way": "^1.15.0",
"flatstr": "^1.0.8",
"light-my-request": "^2.0.3",
"middie": "^3.1.0",
"pino": "^4.17.3",
"tiny-lru": "^1.6.1"
},
"greenkeeper": {
"ignore": [
"boom",
"joi",
"@types/node",
"@types/pino"
]
}
}