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": "blog",
"version": "2.0.0-alpha1",
"description": "An ephemeral blog",
"main": "lib/blog.js",
"bin": {
"blog": "./bin/blog.js"
},
"scripts": {
"document": "jsdoc2md -f 'lib/**/*.js' > doc/README.md",
"lint": "eslint .",
"test": "echo ':('"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/rbdr/blog.git"
},
"author": "Ben Beltran <ben@nsovocal.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://gitlab.com/rbdr/blog/issues"
},
"homepage": "https://gitlab.com/rbdr/blog#readme",
"dependencies": {
"dot": "^1.1.3",
"entities": "^2.0.2",
"getenv": "^1.0.0",
"marked": "^1.0.0",
"minimist": "^1.2.5",
"ncp": "^2.0.0"
},
"devDependencies": {
"eslint": "^7.1.0",
"@hapi/eslint-config-hapi": "^13.0.2",
"@hapi/eslint-plugin-hapi": "^4.3.5",
"jsdoc-to-markdown": "^6.0.1"
},
"engines": {
"node": ">=14.0.0"
}
}
|