forked from RocketChat/agenda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.81 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "agenda",
"version": "4.3.1",
"description": "Light weight job scheduler for Node.js",
"main": "dist/cjs.js",
"types": "dist/index.d.ts",
"files": [
"es.js",
"dist"
],
"engines": {
"node": ">=12.9.0"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"pretest": "npm run build",
"test": "npm run mocha",
"lint": "eslint --cache --fix lib/**",
"mocha": "USE_MONGODB=true mocha --reporter spec --timeout 8000 --exit -b",
"premocha-debug": "npm run build",
"mocha-debug": "USE_MONGODB=true DEBUG=agenda:**,-agenda:internal:** mocha --reporter spec --timeout 8000 -b",
"premocha-debug-internal": "npm run build",
"mocha-debug-internal": "USE_MONGODB=true DEBUG=agenda:internal:** mocha --reporter spec --timeout 8000 -b",
"premocha-debug-all": "npm run build",
"mocha-debug-all": "USE_MONGODB=true DEBUG=agenda:** mocha --reporter spec --timeout 8000 -b",
"postversion": "npm run docs",
"predocs": "npm run build",
"docs": "jsdoc --configure .jsdoc.json --verbose ./dist"
},
"config": {
"blanket": {
"pattern": "lib",
"data-cover-never": "node_modules"
}
},
"repository": {
"type": "git",
"url": "git://github.com/agenda/agenda"
},
"keywords": [
"job",
"jobs",
"cron",
"delayed",
"scheduler",
"runner"
],
"author": "Ryan Schmukler <ryan@slingingcode.com> (http://slingingcode.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/agenda/agenda/issues"
},
"dependencies": {
"cron-parser": "^3.0.0",
"date.js": "~0.3.3",
"debug": "~4.3.0",
"human-interval": "~2.0.0",
"moment-timezone": "~0.5.27",
"mongodb": "^4.1.0"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/human-interval": "1.0.0",
"@typescript-eslint/eslint-plugin": "4.29.0",
"@typescript-eslint/parser": "4.29.0",
"blanket": "1.2.3",
"coveralls": "3.1.1",
"delay": "5.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"esm": "3.2.25",
"expect.js": "0.3.1",
"husky": "5.2.0",
"jsdoc": "3.6.7",
"jsdoc-template": "https://github.com/braintree/jsdoc-template",
"lint-staged": "10.5.4",
"mocha": "8.4.0",
"mocha-lcov-reporter": "1.3.0",
"mongodb-memory-server": "7.3.4",
"prettier": "2.3.2",
"sinon": "11.1.2",
"typescript": "4.3.5"
},
"eslintConfig": {
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"@typescript-eslint/ban-ts-comment": "warn",
"prefer-const": "warn",
"@typescript-eslint/no-non-null-assertion": "off"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts,js,css,md}": "prettier --write"
}
}