This repository has been archived by the owner on Oct 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.41 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
{
"name": "nest-config",
"version": "1.0.0",
"description": "Nest config module",
"main": "dist/index.js",
"typings": "src/index.ts",
"engines": {
"node": "^8 || ^9 || ^10"
},
"scripts": {
"_setup": "npm i -g commitizen semantic-release-cli",
"mocha": "node -r ts-node/register/transpile-only node_modules/mocha/bin/_mocha",
"test:w": "npm run mocha -- --watch-extensions ts --watch src/**/*.spec.ts",
"test": "npm run test:r",
"test:r": "npm run mocha -- src/*.spec.ts",
"semantic-release": "semantic-release",
"prepublishOnly": "npm run build",
"build": "tsc",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unlight/nest-config.git"
},
"keywords": [
"nest",
"config",
"convict"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/unlight/nest-config/issues"
},
"homepage": "https://github.com/unlight/nest-config#readme",
"peerDependencies": {
"@nestjs/common": "^5"
},
"devDependencies": {
"@nestjs/common": "^5",
"@nestjs/core": "^5",
"@nestjs/testing": "^5.0.1",
"@semantic-release/changelog": "^2.0.2",
"@semantic-release/git": "^5.0.0",
"@semantic-release/npm": "^3.3.0",
"@types/convict": "^4.2.0",
"@types/mocha": "^5.2.0",
"@types/node": "^10.1.2",
"conventional-changelog-eslint": "^1.0.9",
"cz-adapter-eslint": "^0.1.2",
"mocha": "^5.2.0",
"reflect-metadata": "^0.1.12",
"rimraf": "^2.6.2",
"rxjs": "^6.2.0",
"semantic-release": "^15.5.0",
"ts-node": "^6.0.5",
"typescript": "^2.8.3"
},
"dependencies": {
"convict": "^4.2.0",
"tslib": "^1.9.1"
},
"release": {
"generateNotes": {
"preset": "eslint"
},
"analyzeCommits": {
"preset": "eslint"
},
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-adapter-eslint"
}
}
}