-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "@betomorrow/sync-wording",
"version": "1.2.7",
"description": "Provide tool to retrieve app wording from Google Sheet and process it to generate i18n json files",
"main": "lib/index.js",
"bin": {
"sync-wording": "lib/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts --upgrade --invalid error",
"build": "tsc -p .",
"test": "npm run build",
"installPackage": "npm run build && npm i -g",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install"
},
"author": "Olivier Gauthier",
"homepage": "https://github.com/BeTomorrow/sync-wording",
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"clear": "^0.1.0",
"colors": "^1.4.0",
"commander": "^9.4.1",
"figlet": "^1.2.4",
"googleapis": "^108.0.0",
"open": "^7.0.0",
"path": "^0.12.7",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"devDependencies": {
"@types/clear": "^0.1.0",
"@types/figlet": "^1.2.0",
"@types/node": "^12.12.14",
"nodemon": "^2.0.1",
"ts-node": "^8.5.4",
"typescript": "^4.8.4"
},
"files": [
"lib/"
]
}