-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "kartoffeldruck",
"version": "5.3.0",
"description": "Simple opinionated static site / blog generator",
"bin": {
"kartoffeldruck": "bin/cmd.js"
},
"scripts": {
"test": "mocha -r test/expect -c --recursive test/spec",
"build": "tsc --pretty --outDir lib",
"lint": "eslint . --ext js,ts",
"all": "run-s lint build test",
"prepare": "npm run build"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/nikku/kartoffeldruck"
},
"files": [
"bin",
"lib"
],
"keywords": [
"static",
"site generator",
"blog",
"markdown",
"nunjucks",
"pagination",
"tags",
"drafts",
"tag cloud"
],
"author": "Nico Rehwaldt<[email protected]>",
"license": "MIT",
"dependencies": {
"@nikku/nunjucks": "^4.1.0",
"aggregate-error": "^3.1.0",
"front-matter": "^4.0.2",
"globalyzer": "^0.1.4",
"kleur": "^4.1.5",
"marked": "^4.1.1",
"min-dash": "^4.0.0",
"mkdirp": "^1.0.4",
"picomatch": "^2.3.1",
"tiny-glob": "^0.2.9"
},
"devDependencies": {
"@types/node": "^18.8.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chai": "^4.3.6",
"del": "^6.1.1",
"eslint": "^8.24.0",
"eslint-plugin-bpmn-io": "^0.16.0",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.2",
"nunjucks-date": "^1.5.0",
"typescript": "^4.8.4"
},
"sideEffects": false
}