forked from lamjack/google-spreadsheet-i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1009 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
39
40
{
"name": "google-spreadsheet-i18n",
"version": "2.0.0",
"description": "Export Google Spreadsheets to I18n JSON files, though Node API or CLI",
"author": "Jack Lam <jack@wizmacau.com>",
"main": "index.js",
"scripts": {
"publish": "npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"keywords": [
"spreadsheet",
"spreadsheets",
"intl",
"i18n",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/lamjack/google-spreadsheet-i18n"
},
"dependencies": {
"bluebird": "^3.5.1",
"cli-output": "^1.0.0",
"commander": "^2.20.0",
"google-spreadsheet": "^2.0.7"
},
"engines": {
"node": ">=4"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0"
},
"bin": {
"gstoi18n": "./gstoi18n.js"
}
}