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
|
{
"name": "blog",
"version": "1.0.0",
"description": "An ephemeral blog",
"main": "lib/blog.js",
"bin": {
"blog": "./bin/blog.js"
},
"scripts": {
"document": "jsdoc -c ./config/jsdoc.json lib config",
"lint": "eslint .",
"test": "echo \":(\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/rbdr/blog.git"
},
"author": "Ben Beltran <ben@nsovocal.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/rbdr/blog/issues"
},
"homepage": "https://github.com/rbdr/blog#readme",
"dependencies": {
"getenv": "0.7.x",
"minimist": "1.2.x",
"mustache": "2.3.x",
"ncp": "2.0.x",
"rimraf": "2.6.x",
"showdown": "1.7.x"
},
"devDependencies": {
"docdash": "0.4.x",
"eslint": "4.1.x",
"eslint-config-hapi": "10.0.x",
"eslint-plugin-hapi": "4.0.x",
"jsdoc": "3.4.x"
},
"engines": {
"node": ">=8.0.0"
}
}
|