-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.47 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
{
"name": "@anephenix/job-queue",
"version": "1.3.11",
"description": "Job Queue",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.json",
"cover": "NODE_ENV=test npx nyc --reporter=lcov npm t",
"lint": "npx eslint .",
"prepare-patch-release": "npm run build && npm run size && npm run update-changelog && git add CHANGELOG.md && git commit -m \"Updated changelog\" && npm version patch",
"publish-patch-release": "npm run prepare-patch-release && git push origin master && git push --tags",
"size": "size-limit",
"test": "NODE_ENV=test npx mocha --require ts-node/register --require test/hooks.ts --extensions ts,tsx test/**/* --exit",
"update-changelog": "npx ts-node scripts/update-changelog.ts",
"watch": "tsc --project tsconfig.json --watch"
},
"keywords": [
"job",
"queue"
],
"author": "Paul Jensen <paul@anephenix.com>",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm t"
}
},
"dependencies": {
"redis": "^4.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@types/mocha": "^10.0.8",
"eslint": "^9.10.0",
"globals": "^16.0.0",
"husky": "^9.1.6",
"mocha": "^11.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^17.0.0",
"size-limit": "^11.1.6",
"size-limit-preset-node-lib": "^0.3.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"size-limit": [
{
"path": "dist/*.js",
"limit": "10 KB"
}
]
}