This repository has been archived by the owner on Feb 11, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.63 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": "messenger-translator",
"version": "5.2.1",
"description": "Webhook server for Messenger translator",
"keywords": [
"node",
"express",
"webhook",
"messenger",
"bot",
"app",
"translate",
"translator"
],
"homepage": "https://translator.eidoriantan.me",
"bugs": "https://github.com/eidoriantan/messenger-translator/issues",
"license": "GPL-3.0-only",
"author": {
"name": "Adriane Justine Tan",
"email": "[email protected]",
"url": "https://eidoriantan.me"
},
"contributors": [],
"funding": {
"type": "patreon",
"url": "https://patreon.com/eidoriantan"
},
"main": "server.js",
"directories": {},
"repository": {
"type": "git",
"url": "git+https://github.com/eidoriantan/messenger-translator.git"
},
"scripts": {
"start": "node server.js",
"lint": "standard",
"postlint": "git log -1 --format=%B | commitlint",
"pretest": "npm run lint",
"test": "mocha test/index.js"
},
"dependencies": {
"@google-cloud/translate": "^6.2.1",
"chinese-to-pinyin": "^1.3.1",
"express": "^4.17.1",
"express-basic-auth": "^1.2.0",
"fuzzyset.js": "^1.0.6",
"greek-transliteration": "^1.0.0",
"hangul-romanization": "^1.0.0",
"hebrew-transliteration": "^1.3.1",
"ini": "^2.0.0",
"kuroshiro": "^1.1.2",
"kuroshiro-analyzer-kuromoji": "^1.1.0",
"mssql": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.3",
"mocha": "^8.4.0",
"should": "^13.2.3",
"standard": "^16.0.3"
},
"engines": {
"node": ">=10.0.0"
},
"private": true
}