-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
98 lines (98 loc) · 2.75 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "poi-plugin-translator",
"version": "3.2.0",
"description": "Translate package into English.",
"main": "index.js",
"scripts": {
"lint": "eslint --fix --ext .ts,.tsx .",
"reset": "git clean -f && git checkout .",
"prepack": "tsc",
"postpublish": "npm run reset",
"typecheck": "tsc --noEmit",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/poooi/plugin-translator.git"
},
"author": {
"name": "KochiyaOcean",
"link": "https://github.com/kochiyaocean"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poooi/plugin-translator/issues"
},
"homepage": "https://github.com/poooi/plugin-translator#readme",
"dependencies": {},
"maintainers": [
{
"name": "letspoi",
"email": "[email protected]"
}
],
"poiPlugin": {
"title": "Translator",
"id": "resources",
"description": "Translate ships' & equipments' name into English or Korean",
"icon": "fa/language",
"i18nDir": "i18n",
"apiVer": {
"7.5.99": "0.10.0"
}
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.7",
"@babel/register": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/babel__core": "^7.1.12",
"@types/babel__preset-env": "^7.9.1",
"@types/bluebird": "^3.5.33",
"@types/eslint": "^7.2.5",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/fs-extra": "^9.0.4",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/node-fetch": "^2.5.7",
"@types/prettier": "^2.1.5",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"babel-eslint": "^10.1.0",
"bluebird": "^3.7.2",
"chalk": "^4.1.0",
"detect-newline": "^3.1.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-poi-plugin": "^3.0.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"husky": "^4.3.0",
"i18next": "^19.8.4",
"jest": "^26.6.3",
"lint-staged": "^10.5.2",
"lodash": "^4.17.20",
"lua-json": "^1.0.0",
"node-fetch": "^2.6.1",
"poi-util-transpile": "^10.3.4",
"prettier": "^2.2.0",
"query-string": "^6.13.7",
"ts-jest": "^26.4.4",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}