|
1 | 1 | { |
2 | | - "name": "queue-xec-master", |
3 | | - "version": "2.0.2", |
4 | | - "description": "Master queue, push jobs and gathers results from online workers.", |
5 | | - "main": "index.js", |
6 | | - "scripts": { |
7 | | - "test": "echo \"Error: no test specified\" && exit 1" |
8 | | - }, |
9 | | - "author": "KosM", |
10 | | - "license": "MIT", |
11 | | - "dependencies": { |
12 | | - "bugout": "^0.0.13", |
13 | | - "commander": "^8.2.0", |
14 | | - "crypto": "^1.0.1", |
15 | | - "dotenv": "^10.0.0", |
16 | | - "envfile": "^6.17.0", |
17 | | - "eslint": "^7.32.0 || ^8.2.0", |
18 | | - "events": "^3.3.0", |
19 | | - "moment": "^2.29.4", |
20 | | - "prompts": "^2.4.1" |
21 | | - }, |
22 | | - "devDependencies": { |
23 | | - "eslint-config-airbnb-base": "^15.0.0", |
24 | | - "eslint-plugin-import": "^2.25.2" |
25 | | - } |
| 2 | + "name": "queue-xec-master", |
| 3 | + "version": "2.0.2", |
| 4 | + "description": "Master queue, push jobs and gathers results from online workers.", |
| 5 | + "main": "index.js", |
| 6 | + "scripts": { |
| 7 | + "test": "echo \"Error: no test specified\" && exit 1", |
| 8 | + "lint": "eslint --ext .js,.ts .", |
| 9 | + "format": "prettier --write .", |
| 10 | + "prepare": "husky install" |
| 11 | + }, |
| 12 | + "author": "KosM", |
| 13 | + "license": "MIT", |
| 14 | + "dependencies": { |
| 15 | + "bugout": "^0.0.13", |
| 16 | + "commander": "^8.2.0", |
| 17 | + "crypto": "^1.0.1", |
| 18 | + "dotenv": "^10.0.0", |
| 19 | + "envfile": "^6.17.0", |
| 20 | + "eslint": "^7.32.0 || ^8.2.0", |
| 21 | + "events": "^3.3.0", |
| 22 | + "moment": "^2.29.4", |
| 23 | + "prompts": "^2.4.1" |
| 24 | + }, |
| 25 | + "devDependencies": { |
| 26 | + "cz-conventional-changelog": "^3.3.0", |
| 27 | + "eslint-config-airbnb-base": "^15.0.0", |
| 28 | + "eslint-config-prettier": "^8.5.0", |
| 29 | + "eslint-plugin-import": "^2.25.2", |
| 30 | + "husky": "^8.0.1", |
| 31 | + "lint-staged": "^13.0.3", |
| 32 | + "prettier": "2.7.1" |
| 33 | + }, |
| 34 | + "config": { |
| 35 | + "commitizen": { |
| 36 | + "path": "./node_modules/cz-conventional-changelog" |
| 37 | + } |
| 38 | + }, |
| 39 | + "husky": { |
| 40 | + "hooks": { |
| 41 | + "prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true" |
| 42 | + } |
| 43 | + } |
26 | 44 | } |
0 commit comments