-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.07 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
{
"bugs": "https://github.com/cedx/koa-pug/issues",
"description": "A Koa view renderer based on the Pug template engine.",
"homepage": "https://github.com/cedx/koa-pug",
"license": "MIT",
"name": "@cedx/koa-pug",
"repository": "cedx/koa-pug",
"type": "module",
"version": "1.2.0",
"author": {
"email": "[email protected]",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"dependencies": {
"pug": "^3.0.3",
"puppeteer": "^24.1.0"
},
"devDependencies": {
"@coffeelint/cli": "^5.2.11",
"@types/gulp": "^4.0.17",
"@types/koa": "^2.15.0",
"@types/node": "^22.10.7",
"@types/pug": "^2.0.10",
"coffeescript": "^2.7.0",
"gulp": "^5.0.0"
},
"engines": {
"node": ">=22.0.0"
},
"exports": {
"types": "./src/index.d.ts",
"default": "./lib/index.js"
},
"files": [
"lib/",
"src/"
],
"keywords": [
"koa",
"middleware",
"pdf",
"pug",
"render",
"template",
"view"
],
"peerDependencies": {
"koa": ">=2.15.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start": "node example/server.js",
"test": "gulp test"
}
}