-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
75 lines (75 loc) · 1.8 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
{
"name": "nestjs-config",
"version": "1.4.11",
"description": "Easy to use Nest configuration module",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/nestjsx/nestjs-config"
},
"license": "MIT",
"authors": [
{
"name": "Aaryanna Simonelli",
"email": "[email protected]"
},
{
"name": "Fabrizio Fenoglio",
"email": "[email protected]"
},
{
"name": "Shady Khalifa",
"email": "[email protected]"
}
],
"keywords": [
"nestjs",
"config",
"environment"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"test:watch": "jest --watch",
"build": "rm -rf ./dist && tsc && npm run build:index",
"build:index": "rm -rf ./index.js ./index.d.ts && tsc -d --skipLibCheck ./index.ts",
"format": "prettier **/**/*.ts --ignore-path ./.prettierignore --write && git status",
"prepublish": "npm run format && npm run build"
},
"peerDependencies": {
"@nestjs/common": "^5.1.0 || ^6.0.3 || ^7.0.1 || ^8.0.0 || ^9.0.0 || ^10.0.0"
},
"dependencies": {
"@types/node": "^16.9.6",
"dotenv": "^10.0.0",
"glob": "^7.1.2",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"reflect-metadata": "^0.1.12",
"rxjs": "^7.1.0"
},
"devDependencies": {
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@nestjs/testing": "^9.4.0",
"@types/glob": "^7.1.1",
"@types/jest": "^27.0.2",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage"
}
}