forked from fastify/fastify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 3.94 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
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "fastify",
"version": "2.0.0-rc.4",
"description": "Fast and low overhead web framework, for Node.js",
"main": "fastify.js",
"typings": "fastify.d.ts",
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:standard": "standard --verbose | snazzy",
"lint:typescript": "standard --parser typescript-eslint-parser --plugin typescript test/types/*.ts fastify.d.ts",
"unit": "tap -J test/*.test.js test/*/*.test.js",
"unit:report": "tap -J test/*.test.js test/*/*.test.js --cov --coverage-report=html --coverage-report=cobertura | tee out.tap",
"unit:junit": "tap-mocha-reporter xunit < out.tap > test/junit-testresults.xml",
"typescript": "tsc --project ./test/types/tsconfig.json",
"test:report": "npm run lint && npm run unit:report && npm run typescript",
"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/\"",
"license-checker": "license-checker --production --onlyAllow='MIT;ISC;BSD-3-Clause;BSD-2-Clause'"
},
"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": "Trivikram Kamat",
"url": "http://trivikr.github.io",
"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.12.1",
"JSONStream": "^1.3.5",
"autocannon": "^3.2.0",
"branch-comparer": "^0.4.0",
"concurrently": "^4.0.0",
"cors": "^2.8.4",
"coveralls": "^3.0.2",
"dns-prefetch-control": "^0.1.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-typescript": "^0.14.0",
"fast-json-body": "^1.1.0",
"fastify-plugin": "^1.2.1",
"form-data": "^2.3.3",
"frameguard": "^3.0.0",
"h2url": "^0.1.2",
"helmet": "^3.14.0",
"hide-powered-by": "^1.0.0",
"hsts": "^2.1.0",
"http-errors": "^1.7.1",
"ienoopen": "^1.0.0",
"joi": "~11.4.0",
"license-checker": "^25.0.0",
"lolex": "^2.7.4",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.0",
"pump": "^3.0.0",
"semver": "^5.6.0",
"send": "^0.16.2",
"serve-static": "^1.13.2",
"simple-get": "^3.0.2",
"snazzy": "^8.0.0",
"split2": "^3.0.0",
"standard": "^12.0.0",
"tap": "^12.3.0",
"tap-mocha-reporter": "^3.0.7",
"then-sleep": "^1.0.1",
"typescript": "^3.1.4",
"typescript-eslint-parser": "^22.0.0",
"x-xss-protection": "^1.1.0"
},
"dependencies": {
"abstract-logging": "^1.0.0",
"ajv": "^6.6.0",
"avvio": "^6.0.0",
"end-of-stream": "^1.4.1",
"fast-json-stringify": "^1.9.1",
"find-my-way": "^1.15.4",
"flatstr": "^1.0.8",
"light-my-request": "^3.0.0",
"middie": "^4.0.0",
"pino": "^5.0.0",
"proxy-addr": "^2.0.3",
"tiny-lru": "^5.0.1"
},
"greenkeeper": {
"ignore": [
"boom",
"joi",
"@types/node"
]
}
}