-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.38 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
{
"name": "@vpalmisano/throttler",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/vpalmisano/throttler.git"
},
"author": {
"name": "Vittorio Palmisano",
"url": "https://github.com/vpalmisano"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build",
"src"
],
"bin": {
"throttler": "throttler.js"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"prepare": "yarn lint && tsc -b && webpack",
"prepublishOnly": "yarn lint",
"postversion": "git push && git push origin $(git tag | sort -V | tail -1)",
"release:patch": "yarn && yarn docs && npm version patch && npm publish",
"release:minor": "yarn && yarn docs && npm version minor && npm publish",
"release:major": "yarn && yarn docs && npm version major && npm publish",
"start": "node throttler.js",
"start:dev": "tsc -b && node build/src/app.js",
"test": "",
"clean": "rm -rf throttler.js build _docs",
"lint": "eslint --resolve-plugins-relative-to path=. src",
"lint:fix": "yarn lint --fix",
"docs": "tsc -b && node build/src/generate-config-docs.js && typedoc"
},
"license": "AGPL-3.0-or-later",
"dependencies": {
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"change-case": "^4.1.2",
"debug-level": "^3.2.0",
"json5": "^2.2.3",
"word-wrap": "^1.2.5"
},
"devDependencies": {
"@types/convict": "^6.1.6",
"@types/convict-format-with-validator": "^6.0.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"prettier": "^3.3.2",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.3",
"typescript": "^5.5.2",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-node-externals": "^3.0.0",
"yarn-upgrade-minor": "^1.0.13"
}
}