forked from toondaey/nestjs-got
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.77 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
102
{
"name": "@t00nday/nestjs-got",
"version": "1.1.0",
"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.json",
"lint": "eslint lib/**/*.ts --ignore-pattern lib/**/*.spec.ts --fix",
"format": "prettier --write **/*.ts",
"prepublish:npm": "npm run build",
"publish:npm": "npm publish --access public",
"prepublish:next": "npm run build",
"publish:next": "npm publish --access public --tag next",
"test:unit": "jest",
"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 --"
},
"keywords": [
"nest got",
"nest-got",
"@nestjs/common",
"nestjs-got",
"nestjs got",
"nestjs-http",
"nestjs http",
"ReactiveX",
"Observer pattern",
"Observables"
],
"author": "B'Tunde Aromire",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/prompt-cli": "11.0.0",
"@compodoc/compodoc": "1.1.11",
"@nestjs/common": "7.6.18",
"@nestjs/core": "7.6.18",
"@nestjs/platform-express": "7.6.18",
"@nestjs/testing": "7.6.18",
"@types/faker": "5.5.9",
"@types/jest": "26.0.24",
"@types/nock": "11.1.0",
"@types/node": "13.9.4",
"@types/rimraf": "3.0.0",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"dotenv-cli": "4.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"faker": "5.5.3",
"got": "11.8.1",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "10.5.4",
"nock": "13.1.4",
"prettier": "2.2.1",
"reflect-metadata": "0.1.13",
"release-it": "14.11.6",
"renovate": "24.119.23",
"rimraf": "3.0.2",
"rxjs": "6.6.3",
"ts-jest": "26.5.6",
"typescript": "4.4.4"
},
"peerDependencies": {
"@nestjs/common": "^6.10.0 || ^7.0.0",
"got": "^11.7.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": [
"prettier --write",
"eslint --ignore-pattern lib/**/*.spec.ts --fix"
]
},
"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"
}
}