-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.18 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
{
"name": "rita-deepl-translate-api",
"version": "1.0.0",
"description": "A API for DeepL Translator",
"main": "index.js",
"scripts": {
"test": "xo && nyc ava",
"release": "npm test && npm version $VER && npm publish",
"postrelease": "git push --follow-tags --no-verify",
"release-patch": "VER=patch npm run release",
"release-minor": "VER=minor npm run release"
},
"repository": {
"type": "git",
"url": "https://github.com/toitzi/deepl-translate-rita"
},
"keywords": [
"translate",
"translator",
"deepl",
"translate",
"api",
"language"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/toitzi/deepl-translate-rita/issues"
},
"homepage": "https://github.com/toitzi/deepl-translate-rita#readme",
"dependencies": {
"got": "^11.8.2"
},
"devDependencies": {
"ava": "^3.15.0",
"nyc": "^15.1.0",
"xo": "^0.46.4"
},
"xo": {
"space": 4,
"parserOptions": {
"ecmaScript": 12
},
"rules": {
"unicorn/prefer-module": 0
}
}
}