Files
JS-RateLimiter/package.json
T
Michael Fabian 'Xaymar' Dirks 9ae45f51ce Publish v0.3.0
- RateLimiter is no longer the default export, breaks normal JavaScript.
- Code is now somewhat properly tested, to ensure that at least basic functionality is there.
2023-03-19 02:14:40 +01:00

30 lines
909 B
JSON

{
"name": "@xaymar/ratelimiter",
"author": "Michael Fabian 'Xaymar' Dirks <info@xaymar.com>",
"description": "A simple but effective way to rate limit Tasks in JavaScript.",
"license": "GPLv3",
"repository": "https://github.com/Xaymar/js-ratelimiter",
"version": "0.3.0",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/xaymar"
},
"main": "generated/ratelimiter.js",
"scripts": {
"lint": "npx eslint ./source --ext .ts,.mts",
"fix": "npx eslint ./source --ext .ts,.mts --fix",
"compile": "npx tsc",
"build": "npm run fix && npm run compile",
"prepublish": "npm run build",
"test": "node ./tests/test.js"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"typescript": "^4.9.3"
}
}