-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.21 KB
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
52
{
"name": "hexo-git-username-coauthor",
"version": "1.0.0",
"description": "Give your post an default coauthor from git user name!",
"scripts": {
"eslint": "eslint .",
"test": "jest",
"test-cover": "jest --coverage",
"build": "babel src --out-dir build",
"ci-build": "yarn eslint && yarn test-cover && yarn build"
},
"license": "MIT",
"author": {
"name": "Peixin Liu",
"email": "fengyi.mail@@gmail.com",
"url": "https://github.com/peixin"
},
"engines": {
"node": "*"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-jest": "^24.9.0",
"eslint": "^6.7.2",
"hexo": "^4.0.0",
"jest": "^24.9.0"
},
"main": "build/index.js",
"files": [
"build/"
],
"bundleDependencies": false,
"homepage": "https://github.com/peixin/hexo-git-username-coauthor",
"repository": {
"type": "git",
"url": "git+https://github.com/peixin/hexo-git-username-coauthor.git"
},
"keywords": [
"hexo",
"coauthor",
"author",
"username",
"git",
"multiple"
],
"bugs": {
"url": "https://github.com/peixin/hexo-git-username-coauthor/issues"
}
}