-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 863 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
{
"name": "hexo-renderer-mustache",
"version": "1.1.0",
"description": "Mustache renderer for Hexo",
"main": "index.js",
"scripts": {
"standard": "standard --env mocha .",
"test": "mocha test/index.js",
"test-cov": "nyc mocha test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/snovey/hexo-renderer-mustache.git"
},
"keywords": [
"hexo",
"renderer",
"mustache"
],
"author": "snovey <[email protected]> (https://www.snovey.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/snovey/hexo-renderer-mustache/issues"
},
"homepage": "https://github.com/snovey/hexo-renderer-mustache#readme",
"dependencies": {
"mustache": "^3.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"nyc": "^14.1.1",
"mocha": "^10.2.0",
"standard": "^13.1.0"
}
}