-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1013 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
{
"name": "blockstatic",
"version": "2.2.1",
"description": "generate static HTML pages from structured configs markdown and json",
"main": "index.js",
"bin": "./bin/index.js",
"scripts": {
"test": "tape ./test/*.test.js"
},
"author": "Adam Davis <[email protected]>",
"license": "ISC",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"tape": "^4.13.0"
},
"dependencies": {
"commander": "^3.0.2",
"front-matter": "^3.1.0",
"handlebars": "^4.7.2",
"jsonfile": "^5.0.0",
"marked": "^0.7.0",
"mkdirp": "^0.5.1",
"rss": "^1.2.2"
},
"keywords": [
"static",
"builder",
"html",
"handlebars",
"json"
],
"bugs": {
"url": "https://github.com/admataz/blockstatic/issues"
},
"homepage": "https://github.com/admataz/blockstatic#readme"
}