-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.59 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "mirrorrim",
"version": "1.1.1",
"description": "Tool for generating localization files for iOS and Android",
"main": "./src/index.js",
"bin": {
"mirrorrim": "./src/index.js",
"migration": "./src/migration.js"
},
"author": "Johnny Gu <[email protected]> (https://github.com/jhonny-me)",
"license": "MIT",
"scripts": {
"lint": "eslint --cache src --fix",
"test": "jest",
"start": "node src/index.js",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"homepage": "https://github.com/jhonny-me/mirrorrim",
"repository": {
"type": "git",
"url": "https://github.com/jhonny-me/mirrorrim.git"
},
"bugs": {
"url": "https://github.com/jhonny-me/mirrorrim/issues"
},
"keywords": [
"multi-language",
"localization",
"iOS",
"Android"
],
"lint-staged": {
"*.{json,css,md}": [
"prettier --write",
"git add"
],
"src/**/*.js": [
"yarn lint",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"auto-changelog": "^2.3.0",
"babel-eslint": "^10.1.0",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2"
},
"dependencies": {
"axios": "^0.26.1",
"commander": "^9.0.0",
"googleapis": "^96.0.0",
"ramda": "^0.27.1",
"write": "^2.0.0",
"xlsx": "^0.18.5"
}
}