Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
fastify
GitHub Repository: fastify/point-of-view
Path: blob/main/package.json
107 views
1
{
2
"name": "@fastify/view",
3
"version": "11.1.1",
4
"description": "Template plugin for Fastify",
5
"main": "index.js",
6
"type": "commonjs",
7
"types": "types/index.d.ts",
8
"scripts": {
9
"benchmark": "node benchmark.js",
10
"example": "node examples/example.js",
11
"example-with-options": "node examples/example-ejs-with-some-options.js",
12
"example-typescript": "npx ts-node types/index.test-d.ts",
13
"lint": "eslint",
14
"lint:fix": "eslint --fix",
15
"test": "npm run test:unit && npm run test:typescript",
16
"test:unit": "c8 node --test",
17
"test:typescript": "tsd"
18
},
19
"repository": {
20
"type": "git",
21
"url": "git+https://github.com/fastify/point-of-view.git"
22
},
23
"keywords": [
24
"fastify",
25
"template",
26
"view",
27
"speed",
28
"ejs",
29
"nunjucks",
30
"pug",
31
"handlebars",
32
"mustache",
33
"twig",
34
"eta"
35
],
36
"author": "Tomas Della Vedova - @delvedor (http://delved.org)",
37
"contributors": [
38
{
39
"name": "Matteo Collina",
40
"email": "[email protected]"
41
},
42
{
43
"name": "Manuel Spigolon",
44
"email": "[email protected]"
45
},
46
{
47
"name": "Aras Abbasi",
48
"email": "[email protected]"
49
},
50
{
51
"name": "Frazer Smith",
52
"email": "[email protected]",
53
"url": "https://github.com/fdawgs"
54
}
55
],
56
"license": "MIT",
57
"bugs": {
58
"url": "https://github.com/fastify/point-of-view/issues"
59
},
60
"homepage": "https://github.com/fastify/point-of-view#readme",
61
"funding": [
62
{
63
"type": "github",
64
"url": "https://github.com/sponsors/fastify"
65
},
66
{
67
"type": "opencollective",
68
"url": "https://opencollective.com/fastify"
69
}
70
],
71
"dependencies": {
72
"fastify-plugin": "^5.0.0",
73
"toad-cache": "^3.7.0"
74
},
75
"devDependencies": {
76
"@fastify/pre-commit": "^2.1.0",
77
"@types/node": "^24.0.8",
78
"autocannon": "^8.0.0",
79
"c8": "^10.1.3",
80
"cross-env": "^10.0.0",
81
"dot": "^1.1.3",
82
"edge.js": "^6.2.1",
83
"ejs": "^3.1.10",
84
"eslint": "^9.17.0",
85
"eta": "^3.4.0",
86
"express": "^5.1.0",
87
"fastify": "^5.0.0",
88
"handlebars": "^4.7.8",
89
"html-minifier-terser": "^7.2.0",
90
"liquidjs": "^10.11.0",
91
"mustache": "^4.2.0",
92
"neostandard": "^0.12.0",
93
"nunjucks": "^3.2.4",
94
"pino": "^9.0.0",
95
"pug": "^3.0.2",
96
"split2": "^4.2.0",
97
"tsd": "^0.32.0",
98
"twig": "^1.17.1"
99
},
100
"pre-commit": [
101
"lint",
102
"test"
103
],
104
"publishConfig": {
105
"access": "public"
106
}
107
}
108
109