-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "hexo-generator-issues",
"version": "2.0.7",
"description": "publish your hexo posts to github issues.",
"main": "index.js",
"scripts": {
"build": "babel src -d dist",
"build:w": "babel src --watch -d dist",
"start": "npm run build:w",
"test:d": "node ./test/test-deployer.js",
"test:g": "node ./test/test-generator.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tcatche/hexo-generator-issues.git"
},
"keywords": [
"hexo",
"github",
"generator",
"hexo generator",
"issue"
],
"author": "tcatche",
"bugs": {
"url": "https://github.com/tcatche/hexo-generator-issues/issues"
},
"homepage": "https://github.com/tcatche/hexo-generator-issues",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.14.0",
"@octokit/plugin-retry": "^3.0.7",
"@octokit/plugin-throttling": "^3.4.1",
"@octokit/rest": "^18.5.3",
"hexo-fs": "^3.1.0",
"md5": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.14.3",
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2"
}
}