-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 962 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-include",
"version": "1.1.0",
"description": "A Hexo plugin for including raw content of any text file into a post",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pirtleshell/hexo-include.git"
},
"author": {
"name": "Robert Pirtle",
"email": "[email protected]",
"url": "pirtle.xyz"
},
"main": "lib/index.js",
"keywords": [
"hexo",
"tag",
"include",
"insert"
],
"bugs": {
"url": "https://github.com/pipirt/hexo-include/issues"
},
"homepage": "https://github.com/pipirt/hexo-include#readme",
"devDependencies": {
"babel-register": "^6.16.3",
"chai": "^3.5.0",
"eslint-config-hexo": "^1.0.3",
"hexo": "^3.2.2",
"hexo-fs": "^0.1.6",
"mocha": "^3.1.1",
"xo": "^0.17.0"
},
"scripts": {
"test": "xo && mocha test/test.js"
},
"xo": {
"extends": "hexo",
"root": true,
"globals": ["hexo"]
}
}