-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 869 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 869 Bytes
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
{
"name": "nestjs-dotenv",
"version": "1.2.1",
"description": "NestJS .env config Module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prepublish": "tsc -p tsconfig.json",
"test": "mocha --require ts-node/register tests/**/*.ts"
},
"author": "Anton Larichev <antonlarichev@gmail.com>",
"keywords": [
"rollbar",
"typescript",
"nodejs",
"nestjs"
],
"repository": {
"type": "git",
"url": "https://github.com/AlariCode/nestjs-dotenv"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AlariCode/nestjs-dotenv/issues"
},
"homepage": "https://github.com/AlariCode/nestjs-dotenv",
"dependencies": {
"dotenv": "^8.0.0"
},
"devDependencies": {
"ts-node": "^7.0.1",
"tslint": "^5.8.0",
"typescript": "^3.2.2",
"@nestjs/common": "^6.0.5"
},
"peerDependencies": {
"@nestjs/common": "^6.5.3"
}
}