-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "ubersetz-plugin-deepl",
"version": "1.5.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"test": "ava",
"build": "rm -r ./dist; tsc",
"lint": "eslint --quiet --ext .ts --ext .tsx ."
},
"keywords": [],
"author": "Max Nowack <[email protected]>",
"license": "MIT",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"files": [
"dist"
],
"dependencies": {
"deapl": "^2.2.4",
"deepl-node": "^1.14.0",
"p-queue": "^6.6.2",
"p-retry": "^4.6.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"@ubersetz/cli": "^1.4.1",
"ava": "^3.15.0",
"eslint": "^7.15.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-sort-class-members": "^1.9.0",
"ts-node": "^10.4.0",
"typescript": "^4.1.3"
}
}