-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 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
{
"name": "i18next-node-locize-backend",
"version": "3.1.2",
"description": "node.js backend layer for i18next using request module to load resources from locize service",
"main": "./index.js",
"keywords": [
"i18next",
"i18next-backend",
"locize"
],
"homepage": "https://github.com/locize/i18next-node-locize-backend",
"bugs": "https://github.com/locize/i18next-node-locize-backend/issues",
"dependencies": {
"request": "^2.88.0"
},
"repository": {
"type": "git",
"url": "git://github.com/locize/i18next-node-locize-backend.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "10.0.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "6.24.1",
"eslint": "6.8.0",
"rimraf": "3.0.0"
},
"scripts": {
"clean": "rimraf lib && mkdir lib",
"build:cjs": "babel src --out-dir lib",
"build": "npm run clean && npm run build:cjs",
"preversion": "npm run build && git push",
"postversion": "git push && git push --tags"
},
"author": "Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)",
"license": "MIT"
}