-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.94 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
{
"name": "@codemonkeys-island/nest-http-queue",
"version": "0.0.6",
"description": "Nest.JS module for handling rate-limited http calls",
"main": "./dist/index.js",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"publish:npm": "npm publish --access public",
"format": "prettier --write \\\"lib/**/*.ts\\\"",
"lint": "eslint 'lib/**/*.ts' --fix",
"test": "jest --config jest.config.json --watch",
"bump-version:major": "npm version major",
"bump-version:minor": "npm version minor",
"bump-version:patch": "npm version patch",
"push-tag": "VERSION=$(node -e \"(function () { console.log(require('./package.json').version) })()\") && git push origin \"v$VERSION\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrBacony/nest-http-queue.git"
},
"keywords": [
"Nest.JS",
"rate-limiter",
"http",
"axios",
"nest"
],
"author": "Gregor Speck",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrBacony/nest-http-queue/issues"
},
"typings": "./dist/index.d.ts",
"homepage": "https://github.com/MrBacony/nest-http-queue#readme",
"devDependencies": {
"@nestjs/cli": "^7.5.6",
"@nestjs/common": "^7.6.15",
"@nestjs/core": "^7.6.15",
"@nestjs/testing": "^7.6.15",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
},
"dependencies": {
"uuid": "^8.3.1"
},
"peerDependencies": {
"@nestjs/common": ">=6.7.0",
"@nestjs/core": ">= 6.7.0",
"axios": "^0.21.1",
"rxjs": ">=6.0.0"
},
"files": [
"dist"
]
}