-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.55 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
{
"name": "multi-language-tools",
"version": "1.0.5",
"description": "function, performance, experience one-stop multi-language script.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint-config-prettier src/*.js --ext",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enjoy-wind/multi-language.git"
},
"keywords": [
"multi-language",
"javascript",
"tool"
],
"author": "enjoy-wind",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/enjoy-wind/multi-language/issues"
},
"homepage": "https://github.com/enjoy-wind/multi-language#readme",
"engines": {
"node": ">=12.22.0"
},
"dependencies": {
"@translate-tools/core": "^0.1.0",
"axios": "^0.24.0",
"file-system": "^2.2.2",
"google-translate-api": "^2.3.0",
"lodash.unescape": "^4.0.1",
"nanoid": "^3.1.30",
"query-string": "^7.0.1",
"readline": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.3",
"babel-eslint": "^10.1.0",
"eslint": "^8.2.0",
"eslint-config-alloy": "^4.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"glob": "^7.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.3",
"path": "^0.12.7",
"prettier": "^2.4.1"
},
"lint-staged": {
"*.{js,json,md}": [
"prettier --write",
"git add"
]
},
"directories": {
"test": "test"
}
}