-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
68 lines (68 loc) · 1.49 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
{
"name": "koa-views",
"version": "8.0.0",
"description": "Template rendering middleware for koa",
"main": "src/index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"xyz": "xyz",
"test": "mocha --reporter dot --bail --exit"
},
"precommit": "lint, test",
"dependencies": {
"consolidate": "^0.16.0",
"debug": "^4.1.0",
"get-paths": "0.0.7",
"koa-send": "^5.0.0",
"mz": "^2.4.0",
"pretty": "^2.0.0",
"resolve-path": "^1.4.0"
},
"devDependencies": {
"ejs": "^2.4.1",
"eslint": "^7.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"handlebars": "^4.7.6",
"koa": "^2.11.0",
"mocha": "^9.1.3",
"nunjucks": "^3.2.1",
"pre-commit": "^1.2.2",
"pug": "^3.0.1",
"should": "^13.1.0",
"supertest": "^3.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.4.0",
"underscore": "^1.8.3",
"xyz": "^2.1.0"
},
"peerDependencies": {
"@types/koa": "^2.13.1"
},
"peerDependenciesMeta": {
"@types/koa": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/queckezz/koa-views"
},
"keywords": [
"koa",
"render",
"views",
"app-wide",
"templating",
"templates"
],
"author": "queckezz",
"license": "MIT",
"bugs": {
"url": "https://github.com/queckezz/koa-views/issues"
}
}