generated from joyqi/typescript-module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 891 Bytes
/
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
{
"name": "koa-pug-middleware",
"keywords": [],
"author": "joyqi",
"license": "",
"description": "A Koa Pug view render middleware.",
"repository": {
"type": "git",
"url": "git+https://github.com/joyqi/koa-pug-middleware.git"
},
"homepage": "https://github.com/joyqi/koa-pug-middleware#readme",
"bugs": {
"url": "https://github.com/joyqi/koa-pug-middleware/issues"
},
"version": "0.0.1",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "npx mocha"
},
"devDependencies": {
"@types/koa": "^2.13.5",
"@types/mocha": "latest",
"@types/pug": "^2.0.6",
"assert": "latest",
"mocha": "latest",
"ts-node": "latest",
"typescript": "latest"
},
"dependencies": {
"pug": "^3.0.2"
},
"engines": {
"node": ">=16",
"pnpm": ">=6"
}
}