-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "queue-xec-worker",
"version": "2.0.2",
"description": "Worker part of queue-xec , can runs jobs - install required dependencies dynamically on demand.All required data with master exchanged with encryption. ",
"main": "index.js",
"scripts": {
"test": "jest --forceExit --passWithNoTests",
"test:dev": "jest --watch ",
"lint": "eslint ",
"format": "prettier --write ",
"prepare": "node -e \"if (process.env.NODE_ENV !== 'production'){process.exit(1)} \" || husky"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"bugout": "^0.0.13",
"child_process": "^1.0.2",
"commander": "^12.0.0",
"crypto": "^1.0.1",
"dotenv": "^16.4.4",
"envfile": "^7.1.0",
"events": "^3.3.0",
"lmify": "^0.3.0",
"moment": "^2.30.1",
"ms": "^2.1.3",
"prompts": "^2.4.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.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"
}
},
"jest": {
"modulePathIgnorePatterns": [
"utils"
]
}
}