forked from agenda/agenda-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.37 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
{
"name": "agenda-rest",
"version": "1.4.0",
"description": "Scheduling as a Service",
"main": "./src/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"start": "node cli.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/jwalkerlusd/agenda-rest.git"
},
"files": [
"cli.js",
"settings.js",
"src"
],
"keywords": [
"schedule",
"scheduling",
"scheduler",
"webservice",
"microservice",
"restful",
"rest",
"agenda"
],
"author": "Keyvan Mir Mohammad Sadeghi <keyvan.m.sadeghi@gmail.com>",
"license": "MIT",
"bin": {
"agenda-rest": "cli.js"
},
"bugs": {
"url": "https://github.com/jwalkerlusd/agenda-rest/issues"
},
"homepage": "https://github.com/jwalkerlusd/agenda-rest#README",
"dependencies": {
"agenda": "^4.0.0",
"commander": "^9.0.0",
"koa": "^2.10.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"node-fetch": "^3.2.1",
"pythonic": "^2.0.3"
},
"engines": {
"node": ">=8"
},
"xo": {
"space": 2,
"rules": {
"ava/no-inline-assertions": 0,
"import/namespace": 0,
"promise/param-names": 0,
"promise/prefer-await-to-then": 0,
"max-params": [
"error",
5
],
"max-nested-callbacks": [
"error",
5
]
}
}
}