-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
101 lines (101 loc) · 2.86 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
99
100
101
{
"name": "@t00nday/nestjs-got",
"version": "2.2.19",
"description": "A simple nestjs http module built on got",
"main": "index.js",
"directories": {
"lib": "lib",
"tests": "tests"
},
"scripts": {
"build": "rimraf -rf dist && tsc -p tsconfig.build.json",
"lint": "eslint lib/**/*.ts --ignore-pattern lib/**/*.spec.ts --fix",
"format": "prettier --write **/*.ts",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish",
"test:unit": "jest --runInBand",
"test:unit:watch": "jest --watch --runInBand",
"test": "jest --config ./tests/jest-e2e.json --runInBand",
"test:integration": "jest --config ./tests/jest-e2e.json --runInBand",
"test:cov": "jest --config ./tests/jest-e2e.json --runInBand --coverage",
"prerelease": "npm run build",
"release": "dotenv release-it -- --ci",
"prepare": ".\\.prepare.bat || ./.prepare"
},
"keywords": [
"nest got",
"nest-got",
"@nestjs/common",
"nestjs-got",
"nestjs got",
"nestjs-http",
"nestjs http",
"rxjs",
"Observer pattern",
"Observables"
],
"author": "B'Tunde Aromire",
"license": "MIT",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/toondaey/nestjs-got.git"
},
"bugs": {
"url": "https://github.com/toondaey/nestjs-got/issues"
},
"homepage": "https://github.com/toondaey/nestjs-got#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/cli": "17.3.0",
"@commitlint/config-conventional": "17.3.0",
"@commitlint/prompt-cli": "17.3.0",
"@compodoc/compodoc": "1.1.19",
"@faker-js/faker": "7.6.0",
"@nestjs/common": "9.2.1",
"@nestjs/core": "9.2.1",
"@nestjs/platform-express": "9.2.1",
"@nestjs/testing": "9.2.1",
"@release-it/conventional-changelog": "5.1.1",
"@types/jest": "29.2.4",
"@types/nock": "11.1.0",
"@types/node": "18.11.16",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"dotenv-cli": "6.0.0",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"got": "11.8.6",
"husky": "8.0.2",
"jest": "29.3.1",
"lint-staged": "13.1.0",
"nock": "13.2.9",
"prettier": "2.8.1",
"reflect-metadata": "0.1.13",
"release-it": "15.5.1",
"renovate": "34.60.1",
"rimraf": "3.0.2",
"rxjs": "7.8.0",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
},
"engines": {
"node": "^14.0.0 || >=16.0.0 || ^18.0.0"
},
"peerDependencies": {
"@nestjs/common": "^7.0.0 || ^8.0.0 || ^9.0.0",
"got": "^11.8.6",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.0.0 || ^7.0.0"
}
}