-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 1.9 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"version": "0.5.4",
"name": "night-owl",
"description": "A simple, elegant and fast static site generator",
"author": {
"name": "Stephen Hutchings",
"url": "https://www.s-ings.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/stephenhutchings/night-owl.git"
},
"bugs": "https://github.com/stephenhutchings/night-owl/issues",
"homepage": "https://night-owl.s-ings.com/",
"main": "lib/index.js",
"bin": "./lib/index.js",
"scripts": {
"test": "c8 mocha",
"badge": "make-coverage-badge --output-path=sites/docs/src/_/assets/coverage.svg",
"release": "standard-version",
"prerelease": "npm test"
},
"type": "module",
"dependencies": {
"chokidar": "^3.5.3",
"deepmerge": "^4.3.1",
"esbuild": "^0.17.19",
"gray-matter": "^4.0.3",
"handlebars": "^4.7.8",
"js-yaml": "^4.1.0",
"marked": "^4.3.0",
"mime-types": "^2.1.35",
"minimatch": "^5.1.6",
"picocolors": "^1.0.0",
"precinct": "^9.2.1",
"pug": "^3.0.2",
"sass": "^1.68.0",
"slugify": "^1.6.6",
"toml": "^3.0.0",
"ws": "^8.14.2"
},
"devDependencies": {
"c8": "^7.14.0",
"make-coverage-badge": "^1.2.0",
"mocha": "^10.2.0",
"standard-version": "^9.5.0"
},
"license": "MIT",
"engines": {
"node": ">=14"
},
"standard-version": {
"releaseCommitMessageFormat": "Chore: Release {{currentTag}}"
},
"c8": {
"all": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"lib/serve/client.js",
"lib/index.js"
],
"reporter": [
"text",
"json",
"json-summary"
]
},
"mocha": {
"recursive": true,
"extension": "test.js"
},
"keywords": [
"static site generator",
"static",
"site",
"generator",
"ssg",
"documentation",
"website",
"blog",
"templates",
"html",
"markdown",
"pug",
"sass",
"scss"
]
}