-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 KB
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
{
"name": "@nestpack/mail",
"version": "1.0.0-alpha.3",
"description": "Mail Module for NestJS projects",
"homepage": "https://github.com/nestpack/mail",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"release": "git tag -a v$npm_package_version -m v$npm_package_version && git push --tags",
"lint": "eslint \"src/**/*.ts\" --fix"
},
"author": "Harry Horton",
"license": "MIT",
"dependencies": {
"@nestjs/common": "^7.4.4",
"@nestjs/core": "^7.4.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"typescript": "^4.0.3"
},
"devDependencies": {
"@nestjs/testing": "^7.4.4",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.0",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"eslint": "7.1.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"jest": "^26.6.0",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.4.1"
}
}