-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathpackage.json
50 lines (50 loc) · 1.04 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
{
"name": "hexo-deployer-git",
"version": "4.0.0",
"description": "Git deployer plugin of Hexo.",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib/",
"index.js"
],
"repository": "hexojs/hexo-deployer-git",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"git",
"deploy",
"deployer"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (https://abnerchou.me)"
],
"license": "MIT",
"devDependencies": {
"c8": "^10.1.2",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.2.0",
"sinon": "^18.0.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"hexo-fs": "^4.1.1",
"hexo-util": "^3.0.1",
"luxon": "^3.2.1",
"nunjucks": "^3.2.3",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=18"
}
}