-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.3 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
{
"name": "@gboutte/nestjs-hbs",
"version": "0.0.15",
"description": "This package provide a service to render handlebars templates for nestjs.",
"keywords": [
"nestjs",
"handlebars",
"hbs",
"templates"
],
"homepage": "https://github.com/gboutte/nestjs-hbs#readme",
"bugs": {
"url": "https://github.com/gboutte/nestjs-hbs/issues",
"email": "gboutte@protonmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/gboutte/nestjs-hbs"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist && tsc",
"prepublish": "npm run build",
"format": "prettier --write \"**/*.{js,ts,d.ts}\"",
"format:check": "prettier --check \"**/*.{js,ts,d.ts}\""
},
"author": "Grégory Boutte <gboutte@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"@types/node": "^18.0.0 || ^19.0.0 || ^20.0.0",
"handlebars": "^4.7.8",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"rxjs": "^7.8.1",
"typescript": "^5.2.2"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0",
"handlebars": "^4.7.8"
}
}