forked from hexojs/hexo-deployer-rsync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 877 Bytes
/
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
{
"name": "hexo-deployer-rsync",
"version": "1.0.0",
"description": "Rsync deployer plugin of Hexo.",
"main": "index",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"lib/",
"index.js"
],
"repository": "hexojs/hexo-deployer-rsync",
"homepage": "http://hexo.io/",
"keywords": [
"hexo",
"rsync",
"deploy",
"deployer"
],
"author": "Tommy Chen <tommy351@gmail.com> (http://zespia.tw)",
"license": "MIT",
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.1.0",
"eslint-config-hexo": "^4.1.0",
"mocha": "^8.0.1",
"nyc": "^15.0.0"
},
"dependencies": {
"chalk": "^4.1.1",
"hexo-util": "^2.1.0"
},
"engines": {
"node": ">= 8.6.0"
}
}