-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.12 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": "hexo-i18n",
"version": "2.0.0",
"description": "i18n module for Hexo.",
"main": "dist/i18n.js",
"scripts": {
"prepublish ": "npm run clean && npm run build",
"build": "tsc -b",
"clean": "tsc -b --clean",
"eslint": "eslint .",
"pretest": "npm run clean && npm run build",
"test": "mocha test/index.ts --require ts-node/register",
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"files": [
"dist/**"
],
"types": "./dist/i18n.d.ts",
"engines": {
"node": ">=14"
},
"repository": "hexojs/hexo-i18n",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"i18n",
"localization"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"license": "MIT",
"dependencies": {
"sprintf-js": "^1.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^18.11.8",
"@types/sprintf-js": "^1.1.2",
"c8": "^9.1.0",
"chai": "^4.3.6",
"eslint": "^8.49.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
}
}