-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.5 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
{
"name": "mercury-bot",
"version": "3.3.0",
"description": "Mercury is a bot for managing in-code static translations",
"main": "src/app.js",
"scripts": {
"format": "prettier-eslint \"**/*.js\" --print-width 300 --write",
"mocha": "mocha test/unit --timeout 10000",
"precommit": "lint-staged",
"test": "npm run format && $(npm bin)/eslint ./ && npm run mocha"
},
"lint-staged": {
"*.js": [
"npm run format",
"eslint ./",
"git add"
]
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opentable/mercury.git"
},
"keywords": [
"translation",
"mercury",
"bot"
],
"author": "Federico Maffei <federico.maffei@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/opentable/mercury/issues"
},
"homepage": "https://github.com/opentable/mercury#readme",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "6.1.0",
"husky": "^0.14.3",
"injectr": "^0.5.1",
"lint-staged": "^9.2.1",
"mocha": "^6.2.0",
"prettier-eslint-cli": "^5.0.0",
"sinon": "^7.4.2"
},
"dependencies": {
"@octokit/rest": "^16.43.2",
"async": "2.6.3",
"base-64": "0.1.0",
"config": "1.31.0",
"deep-diff": "0.3.8",
"joi": "10.6.0",
"js-yaml": "3.13.1",
"lodash": "4.17.15",
"micromatch": "4.0.2",
"needle": "1.6.0",
"parse-glob": "3.0.4",
"string-to-template": "1.0.0",
"utf8": "2.1.2",
"xml-js": "1.6.11"
}
}