-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.06 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
47
48
49
{
"name": "google-sheets-i18n-generator",
"version": "1.0.3",
"description": "Generate i18n JSON/JS files from a Google Sheets spreadsheet",
"main": "index.js",
"bin": {
"gs-i18n": "index.js"
},
"files": [
"lib/",
"index.js"
],
"scripts": {
"test": "nyc --reporter=lcov ava",
"coverage": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VictorCazanave/google-sheets-i18n-generator.git"
},
"keywords": [
"google sheets",
"spreadsheet",
"i18n",
"commonjs",
"es modules",
"json"
],
"author": "Victor Cazanave <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/VictorCazanave/google-sheets-i18n-generator/issues"
},
"homepage": "https://github.com/VictorCazanave/google-sheets-i18n-generator#readme",
"dependencies": {
"commander": "^5.1.0",
"dot-object": "^2.1.3",
"googleapis": "^49.0.0",
"pkginfo": "^0.4.1"
},
"devDependencies": {
"ava": "^3.8.1",
"codecov": "^3.6.4",
"eslint": "^6.8.0",
"mock-fs": "^4.12.0",
"nyc": "^15.0.1",
"sinon": "^8.1.1"
}
}