-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
105 lines (105 loc) · 2.93 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@t00nday/nestjs-pdf",
"version": "3.0.5",
"description": "PDF generator for nestjs framework.",
"main": "index.js",
"types": "index.d.ts",
"author": "B'Tunde Aromire",
"keywords": [
"pdf",
"nestjs",
"html-pdf",
"nestjs/pdf",
"@nestjs/pdf"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"format": "prettier --write lib/**/*.ts README.md",
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"lint": "eslint lib/**/*.ts --fix",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test": "npm run test:integration",
"test:integration": "jest --config ./test/jest-e2e.json --runInBand",
"test:": "jest --config ./test/jest-e2e.json --runInBand",
"test:cov": "jest --config ./test/jest-e2e.json --runInBand --coverage",
"prerelease": "npm run build",
"release": "dotenv release-it --",
"prepare": ".\\.prepare.bat || ./.prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toondaey/nestjs-pdf.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/toondaey/nestjs-pdf/issues"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"homepage": "https://github.com/toondaey/nestjs-pdf#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"consolidate": "0.16.0",
"html-pdf": "3.0.1",
"juice": "8.0.0",
"lodash.merge": "4.6.2",
"lodash.omit": "4.5.0"
},
"peerDependencies": {
"@nestjs/common": "^6.10.0 || ^7.0.0 || ^8.0.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0 || ^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@commitlint/prompt-cli": "16.2.3",
"@compodoc/compodoc": "1.1.19",
"@nestjs/common": "8.4.4",
"@nestjs/core": "8.4.4",
"@nestjs/platform-express": "8.4.4",
"@nestjs/testing": "8.4.4",
"@types/consolidate": "0.14.1",
"@types/html-pdf": "3.0.0",
"@types/jest": "27.4.1",
"@types/lodash.merge": "4.6.6",
"@types/lodash.omit": "4.5.6",
"@types/node": "17.0.23",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.19.0",
"@typescript-eslint/parser": "5.19.0",
"coveralls": "3.1.1",
"dotenv-cli": "5.1.0",
"eslint": "8.13.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.8",
"prettier": "2.6.2",
"pug": "3.0.2",
"reflect-metadata": "0.1.13",
"release-it": "14.14.2",
"renovate": "32.17.1",
"rimraf": "3.0.2",
"rxjs": "7.5.5",
"ts-jest": "27.1.4",
"typescript": "4.6.3"
},
"engines": {
"node": ">=12.22.0",
"npm": ">=6.14.16"
}
}