-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "i18n-cloud-sync",
"version": "1.2.0",
"description": "A restful api which allows you to sync translations from local projects to cloud based locations",
"main": "src/web-server.js",
"private": false,
"bin": {
"i18n-sync": "./bin/i18n-sync"
},
"scripts": {
"start": "node src/web-server.js"
},
"keywords": [
"translations",
"cloud",
"aws",
"google cloud",
"digital ocean spaces"
],
"author": "thewebuiguy",
"repository": {
"type": "git",
"url": "git+https://github.com/EvanBurbidge/i18n-sync.git"
},
"bugs": {
"url": "https://github.com/EvanBurbidge/i18n-sync/issues"
},
"homepage": "https://github.com/EvanBurbidge/i18n-sync#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "ISC",
"dependencies": {
"@google-cloud/storage": "^4.7.0",
"aws-sdk": "^2.696.0",
"azure-storage": "^2.10.3",
"basic-auth": "^2.0.1",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"lodash": "^4.17.15",
"minimist": "^1.2.5",
"morgan": "^1.10.0"
}
}