-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
66 lines (66 loc) · 1.92 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": "deepl-node",
"description": "deepl-node is the official DeepL Node.js client library",
"version": "1.15.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": ">=12.0"
},
"keywords": [
"deepl",
"translator",
"api"
],
"dependencies": {
"@types/node": ">=12.0",
"axios": "^1.7.4",
"form-data": "^3.0.0",
"loglevel": ">=1.6.2"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-promise": "^6.0.0",
"jest": "^27.4.3",
"jest-junit": "^13.0.0",
"nock": "^13.3.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3",
"uuid": "^8.3.2"
},
"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\""
}
}