-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
51 lines (51 loc) · 1.07 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
{
"name": "hexo-deployer-heroku",
"version": "1.0.0",
"description": "Heroku deployer plugin of Hexo.",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib",
"assets": "./assets"
},
"files": [
"index.js",
"lib/",
"assets/"
],
"repository": "hexojs/hexo-deployer-heroku",
"homepage": "https://hexo.io/",
"keywords": [
"hexo",
"heroku",
"deploy",
"deployer"
],
"author": "Tommy Chen <[email protected]> (https://zespia.tw)",
"maintainers": [
"Abner Chou <[email protected]> (https://abnerchou.me)"
],
"license": "MIT",
"devDependencies": {
"bluebird": "^3.7.2",
"chai": "^4.3.4",
"eslint": "^9.0.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.2.0"
},
"dependencies": {
"hexo-fs": "^4.1.1",
"hexo-util": "^3.1.0",
"moment": "^2.29.1",
"picocolors": "^1.0.0"
},
"engines": {
"node": ">=14"
}
}