-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "hexo-tag-share-post",
"version": "0.0.1",
"description": "Hexo tag plugin for embedding share links into the post body",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "nyc --reporter=html --reporter=text ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"ava": {
"files": [
"specs/*_spec.js"
],
"babel": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/wololock/hexo-tag-share-post.git"
},
"author": "Szymon Stepniak <[email protected]> (https://e.printstacktrace.blog)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wololock/hexo-tag-share-post/issues"
},
"homepage": "https://github.com/wololock/hexo-tag-share-post#readme",
"devDependencies": {
"@ava/babel": "^1.0.0",
"ava": "^3.8.1",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-hexo": "^4.1.0",
"eslint-plugin-node": "^11.1.0",
"hexo": "^4.0.0",
"hexo-renderer-ejs": "^1.0.0",
"hexo-renderer-markdown-it": "^4.1.0",
"hexo-test-utils": "^0.4.1",
"nyc": "^15.0.1"
},
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=8.10.0"
}
}