-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
139 lines (139 loc) · 3.45 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "adonis-request-throttler",
"version": "3.0.3",
"description": "Request throttler provider for AdonisJS 5",
"scripts": {
"mrm": "mrm --preset=@adonisjs/mrm-preset",
"dev": "tsc --watch",
"clean": "del build",
"compile": "npm run lint && npm run clean && tsc && npm run copy:files",
"copy:files": "cpx 'templates/**' 'build/templates'",
"build": "npm run compile",
"test": "jest test --runInBand --testTimeout 30000",
"prepublishOnly": "npm run build",
"lint": "eslint . --ext=.ts --fix",
"format": "prettier --write .",
"commit": "git-cz",
"release": "np",
"version": "npm run build",
"prepare": "npm run build",
"run-prettier": "prettier --write .",
"sync-labels": "github-label-sync --labels ./node_modules/@adonisjs/mrm-preset/gh-labels.json reg2005/adonis5-cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reg2005/adonis5-cache.git"
},
"keywords": [
"Adonis",
"5",
"adonis-request-throttler"
],
"author": "Vladyslav Parashchenko",
"contributors": [
{
"name": "Vladyslav Parashchenko",
"email": "vladyslavparashchenko37@gmail.com"
},
{
"name": "Ryumin Evgeniy",
"email": "cmp08@ya.ru"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/reg2005/adonis-request-throttler/issues"
},
"homepage": "https://github.com/reg2005/adonis-request-throttler#readme",
"types": "build/adonis-typings/index.d.ts",
"typings": "build/adonis-typings/index.d.ts",
"devDependencies": {
"@adonisjs/ace": "^11.3.1",
"@adonisjs/core": "^5.9.0",
"@adonisjs/fold": "^8.2.0",
"@adonisjs/ioc-transformer": "^2.3.4",
"@adonisjs/logger": "^4.1.5",
"@adonisjs/mrm-preset": "^5.0.3",
"@types/jest": "^29.5.7",
"@types/node": "^20.8.10",
"adonis-provider-tester": "^2.1.0",
"commitizen": "^4.3.0",
"cpx": "^1.5.0",
"cz-conventional-changelog": "^3.2.0",
"debug": "^4.3.4",
"del-cli": "^5.1.0",
"doctoc": "^2.2.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-adonis": "^2.1.1",
"eslint-plugin-prettier": "^5.0.1",
"get-port": "^7.0.0",
"github-label-sync": "^2.3.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"mrm": "^4.1.22",
"np": "^8.0.4",
"npm": "^10.2.3",
"npm-audit-html": "^1.4.1",
"pino-pretty": "^10.2.3",
"prettier": "^3.0.3",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.21",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-mockito": "^2.6.1",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "npm audit --production --json | ./node_modules/.bin/npm-audit-html && git add npm-audit.html && doctoc README.md --title='## Table of contents' && git add README.md",
"commit-msg": "node ./node_modules/@adonisjs/mrm-preset/validate-commit/conventional/validate.js"
}
},
"nyc": {
"exclude": [
"test"
],
"extension": [
".ts"
]
},
"main": "build/index.js",
"files": [
"build/src",
"build/adonis-typings",
"build/providers",
"build/templates",
"build/index.d.ts",
"build/index.js"
],
"adonisjs": {
"types": "adonis-request-throttler",
"providers": [
"adonis-request-throttler"
],
"templates": {
"config": [
{
"src": "config.txt",
"dest": "request-throttler"
}
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"np": {
"contents": ".",
"anyBranch": false
},
"dependencies": {
"@adonisjs/events": "^7.2.1",
"@adonisjs/redis": "^7.3.4",
"adonis5-cache": "^1.3.1",
"ms": "^2.1.3"
}
}