-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 KB
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
{
"name": "queue-xec-master",
"version": "2.1.1",
"description": "Master queue, push jobs and gathers results from online workers.",
"main": "index.js",
"scripts": {
"test": "jest --forceExit",
"test:dev": "jest --watch ",
"lint": "eslint ",
"format": "prettier --write ",
"prepare": "node -e \"if (process.env.NODE_ENV !== 'production'){process.exit(1)} \" || husky"
},
"author": "KosM",
"license": "MIT",
"dependencies": {
"bugout": "^0.0.13",
"commander": "^14.0.0",
"crypto": "^1.0.1",
"dotenv": "^17.2.0",
"envfile": "^7.1.0",
"events": "^3.3.0",
"moment": "^2.30.1",
"prompts": "^2.4.1"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.1.2",
"moment-timezone": "^0.6.0",
"prettier": "^3.6.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true",
"pre-commit": "echo \"[Husky] pre-commit\""
}
},
"jest": {
"modulePathIgnorePatterns": [
"utils"
]
}
}