forked from dromara/issues-translate-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "issues-translator",
"version": "2.7.0",
"private": true,
"description": "The action for translating Non-English issues content to English.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/usthe/issues-translate-action.git"
},
"keywords": [
"actions",
"node",
"setup",
"translate",
"issues",
"localization"
],
"author": "tomsun28",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/webhooks": "7.15.1",
"@tomsun28/google-translate-api": "1.1.2",
"franc-min": "5.0.0"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/node": "^14.10.0",
"@typescript-eslint/parser": "^3.10.1",
"@vercel/ncc": "^0.23.0",
"eslint": "^7.8.1",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^23.20.0",
"jest": "^24.9.0",
"jest-circus": "^26.4.2",
"js-yaml": "^3.14.0",
"prettier": "2.1.1",
"ts-jest": "^24.3.0",
"typescript": "^4.0.2"
}
}