This repository was archived by the owner on Apr 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.37 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.37 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
{
"name": "deepl-client",
"version": "1.1.4",
"description": "A client to interact with the DeepL API.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint --fix src/**/*.ts",
"test": "jest --force-exit --detectOpenHandles --passWithNoTests",
"test:cov": "jest --coverage"
},
"author": "Gilles Coolen",
"keywords": [
"typescript",
"deepl-client",
"deepl"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gillescoolen/deepl-client.git"
},
"license": "MIT",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^26.0.24",
"@types/node": "^15.14.9",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.4.3"
},
"dependencies": {
"node-fetch": "^3.1.1",
"query-string": "^7.0.1"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"testPathIgnorePatterns": [
"dist"
],
"setupFiles": [
"dotenv/config"
]
}
}