-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.28 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
{
"name": "nestjs-env",
"version": "2.1.1",
"description": "Using this library you can easily work with environment variables",
"author": "Antsiferov Maxim <antsiferovmaximv@gmail.com>",
"license": "MIT",
"bin": {
"nestjs-env": "node dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/AntsiferovMaxim/nestjs-env"
},
"scripts": {
"build": "rm -rf ./dist && tsc -p tsconfig.json",
"prepublish": "yarn build",
"lint": "eslint 'src/**/*.ts' --ignore-pattern 'src/**/*.spec.ts'",
"format": "prettier \"**/*.ts\" --ignore-path ./.prettierignore --write && git status",
"test": "env-cmd -f ./src/__tests__/.env jest",
"test:watch": "env-cmd -f ./src/__tests__/.env jest --watch",
"test:coverage": "env-cmd -f ./src/__tests__/.env jest --coverage"
},
"devDependencies": {
"@nestjs/common": "^7.6.7",
"@nestjs/core": "^7.6.7",
"@nestjs/platform-express": "^7.6.7",
"@nestjs/testing": "^7.6.7",
"@types/jest": "^24.0.23",
"@types/node": "^14.14.22",
"@types/recursive-readdir": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"env-cmd": "^10.0.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^4.3.8",
"jest": "^24.9.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.3",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"typescript": "^3.7.2"
},
"peerDependencies": {
"@nestjs/common": "*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{ts,json}": [
"prettier --ignore-path ./.prettierignore --write"
]
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "./__tests__/coverage",
"testEnvironment": "node"
},
"keywords": [
"nestjs",
"config",
"nestjs-env",
"env"
],
"dependencies": {
"recursive-readdir": "^2.2.3",
"yargs": "^17.6.2"
}
}