-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 993 Bytes
/
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
{
"name": "fastify-language-parser",
"version": "3.0.0",
"description": "Language parser plugin for fastify",
"main": "plugin.js",
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "standard --fix",
"test": " standard --fix && tap test.js --cov --no-browser",
"coverage": "standard --fix && tap test.js --cov --no-browser --coverage-report html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lependu/fastify-language-parser.git"
},
"keywords": [
"nodejs",
"fastify",
"i18n"
],
"author": "Akos Kovács <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lependu/fastify-language-parser/issues"
},
"homepage": "https://github.com/lependu/fastify-language-parser#readme",
"devDependencies": {
"fastify": "^3.0.3",
"standard": "^16.0.1",
"tap": "^14.10.7"
},
"dependencies": {
"accept-language-parser": "^1.5.0",
"fastify-plugin": "^3.0.0"
}
}