-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.29 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.29 KB
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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "neanderthal",
"version": "0.1.15",
"description": "static blog machine",
"main": "cli.js",
"scripts": {
"build": "tsc",
"test": "uvu -r ts-node/register tests",
"link": "npm link"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MH15/neanderthal.git"
},
"author": "Matt Hall",
"license": "MIT",
"bugs": {
"url": "https://github.com/MH15/neanderthal/issues"
},
"homepage": "https://github.com/MH15/neanderthal#readme",
"dependencies": {
"ansi-colors": "^4.1.1",
"front-matter": "^4.0.2",
"fs-extra": "^8.1.0",
"highlight.js": "^10.1.1",
"markdown-it": "^11.0.0",
"markdown-it-anchor": "^7.0.0",
"markdown-it-footnote": "^3.0.2",
"node-watch": "^0.6.4",
"nunjucks": "^3.2.2",
"serve-handler": "^6.1.3",
"source-map-support": "^0.5.19",
"terminal-link": "^2.1.1",
"yesno": "^0.3.1"
},
"bin": {
"neanderthal": "./cli.js"
},
"devDependencies": {
"@types/fs-extra": "^9.0.1",
"@types/highlightjs": "^9.12.0",
"@types/markdown-it": "^10.0.1",
"@types/node": "^14.0.13",
"@types/nunjucks": "^3.1.3",
"@types/serve-handler": "^6.1.0",
"ts-node": "^9.1.1",
"uvu": "^0.5.1",
"typescript": "^3.9.7"
},
"files": [
"build",
"defaults"
]
}