forked from fastify/point-of-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.42 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
{
"name": "point-of-view",
"version": "2.1.0",
"description": "Template plugin for Fastify",
"main": "index.js",
"scripts": {
"example": "node example.js",
"example-with-options": "node example-ejs-with-some-options.js",
"test-with-snapshot": "standard && cross-env TAP_SNAPSHOT=1 tap test-with-snapshot.js",
"test": "standard && tap test.js test-with-snapshot.js && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/point-of-view.git"
},
"keywords": [
"fastify",
"template",
"view",
"speed",
"ejs",
"marko",
"nunjucks",
"pug",
"handlebars",
"mustache"
],
"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": "^1.2.0",
"hashlru": "^2.2.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"ejs": "^2.5.9",
"ejs-mate": "^2.3.0",
"express": "^4.16.3",
"fastify": "^1.13.1",
"handlebars": "^4.0.11",
"marko": "^4.13.6",
"mustache": "^3.0.0",
"nunjucks": "^3.1.6",
"pre-commit": "^1.2.2",
"pug": "^2.0.3",
"simple-get": "^3.0.2",
"standard": "^12.0.0",
"tap": "^12.0.0",
"typescript": "^3.2.2"
},
"standard": {
"ignore": [
"*.marko.js"
]
}
}