-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "gitpo",
"version": "2.0.7",
"description": "Small utility to manage translations for POEditor projects linked to GitHub repositories",
"author": "Jérémie Parker <[email protected]>",
"license": "MIT",
"main": "gitpo.js",
"bin": {
"gitpo": "./cli.js"
},
"repository": "https://github.com/vizeat/gitpo",
"homepage": "https://github.com/vizeat/gitpo",
"bugs": {
"url": "https://github.com/vizeat/gitpo/issues"
},
"keywords": [
"POEditor",
"i18n",
"translations",
"webhooks",
"api",
"cli"
],
"dependencies": {
"inquirer": "^7.0.1",
"lodash": "^4.17.4",
"prettyjson": "^1.2.1",
"rc": "^1.2.2",
"request": "^2.83.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-config-vizeat": "^10.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"prettier": "^2.0.5"
},
"scripts": {
"lint": "eslint --cache -c .eslintrc . --ext js",
"pub": "yarn publish --registry https://registry.npmjs.com && git push --follow-tags"
}
}