-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
75 lines (75 loc) · 1.97 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
67
68
69
70
71
72
73
74
75
{
"name": "@translate-tools/core",
"version": "2.0.1",
"description": "A free and unlimited API for Google Translate, Yandex, Bing",
"keywords": [
"translate",
"translator",
"google",
"translate",
"yandex",
"bing",
"api",
"free",
"language"
],
"license": "Apache-2.0",
"author": "Vitonsky <https://github.com/vitonsky>",
"homepage": "https://github.com/translate-tools/core",
"repository": {
"type": "git",
"url": "https://github.com/translate-tools/core"
},
"scripts": {
"build": "gulp",
"build:full": "npm run clean:build && npm run build",
"clean:build": "rm -rf ./dist",
"prettify": "prettier --write **/*.{ts,tsx,js} && eslint --fix **/*.{ts,tsx,js}",
"publish": "npm run build:full && cd ./dist && npm publish",
"publish:patch": "npm version patch && npm run publish",
"publish:minor": "npm version minor && npm run publish",
"prepare": "husky install",
"test": "jest"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.1",
"isomorphic-fetch": "^3.0.0",
"lodash": "^4.17.21",
"query-string": "^6.14.1",
"xpath": "^0.0.32"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.14.5",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^27.0.2",
"@types/jsdom": "^16.2.13",
"@types/lodash": "^4.14.170",
"@types/node": "^15.12.1",
"@types/xmldom": "^0.1.31",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"eslint": "^7.27.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gulp": "^5.0.0",
"gulp-babel": "^8.0.0",
"gulp-clean-package": "^0.0.2",
"gulp-sourcemaps": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.0.0",
"merge-stream": "^2.0.0",
"mp3-parser": "^0.3.0",
"prettier": "^2.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.3.2"
}
}