-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2.02 KB
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
67
68
69
{
"name": "deepl-node",
"description": "deepl-node is the official DeepL Node.js client library",
"version": "1.28.0",
"author": "DeepL SE <open-source@deepl.com> (https://www.deepl.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/DeepLcom/deepl-node.git"
},
"bugs": "https://github.com/DeepLcom/deepl-node/issues",
"homepage": "https://www.deepl.com/",
"engines": {
"node": ">=14.17"
},
"keywords": [
"deepl",
"translator",
"api"
],
"dependencies": {
"@types/node": ">=12.0",
"adm-zip": "^0.6.0",
"axios": "^1.19.0",
"form-data": "^3.0.5",
"loglevel": ">=1.6.2"
},
"devDependencies": {
"@types/adm-zip": "0.5.8",
"@types/jest": "29.5.14",
"@types/mock-fs": "4.13.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"dotenv": "16.6.1",
"eslint": "8.57.1",
"eslint-config-airbnb-typescript": "16.2.0",
"eslint-config-prettier": "8.10.2",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-promise": "6.6.0",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"mock-fs": "5.5.0",
"nock": "13.5.6",
"prettier": "2.8.8",
"ts-jest": "29.4.12",
"typescript": "4.9.5"
},
"files": [
"CHANGELOG.md",
"CONTRIBUTING.md",
"dist",
"LICENSE",
"README.md",
"SECURITY.md"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"clean": "rm -rf dist/*",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "jest",
"test:coverage": "jest --coverage --reporters=\"default\" --reporters=\"jest-junit\" --maxWorkers=5"
}
}