-
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
78 lines (78 loc) · 1.92 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
{
"name": "@fastify/view",
"version": "10.0.1",
"description": "Template plugin for Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"benchmark": "node benchmark.js",
"example": "node examples/example.js",
"example-with-options": "node examples/example-ejs-with-some-options.js",
"example-typescript": "npx ts-node types/index.test-d.ts",
"lint": "standard",
"test-with-snapshot": "cross-env TAP_SNAPSHOT=1 tap test/snap/*",
"test": "npm run test:unit && npm run test-with-snapshot && npm run test:typescript",
"test:unit": "tap",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/point-of-view.git"
},
"keywords": [
"fastify",
"template",
"view",
"speed",
"ejs",
"nunjucks",
"pug",
"handlebars",
"mustache",
"twig",
"eta"
],
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/point-of-view/issues"
},
"homepage": "https://github.com/fastify/point-of-view#readme",
"dependencies": {
"fastify-plugin": "^5.0.0",
"toad-cache": "^3.7.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@types/node": "^22.0.0",
"art-template": "^4.13.2",
"autocannon": "^8.0.0",
"cross-env": "^7.0.3",
"dot": "^1.1.3",
"ejs": "^3.1.10",
"eta": "^3.4.0",
"express": "^4.19.2",
"fastify": "^5.0.0",
"handlebars": "^4.7.8",
"html-minifier-terser": "^7.2.0",
"liquidjs": "^10.11.0",
"mustache": "^4.2.0",
"nunjucks": "^3.2.4",
"pino": "^9.0.0",
"pug": "^3.0.2",
"simple-get": "^4.0.1",
"split2": "^4.2.0",
"standard": "^17.1.0",
"tap": "^21.0.0",
"tsd": "^0.31.0",
"twig": "^1.17.1"
},
"pre-commit": [
"lint",
"test"
],
"publishConfig": {
"access": "public"
}
}