-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (53 loc) · 1.51 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": "queue-xec-master",
"version": "2.1.0",
"description": "Master queue, push jobs and gathers results from online workers.",
"main": "index.js",
"scripts": {
"test": "jest --forceExit",
"test:dev": "jest --watch ",
"lint": "eslint --ext .js,.ts ",
"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": "^12.0.0",
"crypto": "^1.0.1",
"dotenv": "^16.4.4",
"envfile": "^7.1.0",
"eslint": "^8.56.0",
"events": "^3.3.0",
"moment": "^2.30.1",
"prompts": "^2.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5"
},
"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"
]
}
}