forked from i18next/i18next-express-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "fastify-i18next",
"version": "0.5.1",
"description": "i18next plugin for fastify, based on i18next-express-middleware",
"main": "./lib/index.js",
"types": "./index.d.ts",
"keywords": [
"i18next",
"fastify-i18next",
"fastify"
],
"homepage": "https://github.com/Sionarch/fastify-i18next",
"bugs": "https://github.com/Sionarch/fastify-i18next/issues",
"repository": {
"type": "git",
"url": "git://github.com/Sionarch/fastify-i18next.git"
},
"dependencies": {
"@babel/runtime": "^7.5.0",
"cookies": "0.7.3",
"fastify-plugin": "^1.6.0"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.0",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.0",
"babel-eslint": "10.0.2",
"eslint": "6.0.1",
"fastify": "^2.6.0",
"i18next": "17.0.6"
},
"scripts": {
"transpile": "babel src -d lib",
"build": "npm run transpile",
"version": "npm run build",
"postversion": "git push && git push --tags && rm -rf build/temp"
},
"author": "Eric Svensson <eric@ericsvensson.se> (https://github.com/Sionarch)",
"license": "MIT"
}