forked from agenda/agenda-rest
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 2.35 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
{
"name": "@nftoolkit/agenda-rest",
"version": "1.0.3",
"description": "Scheduling as a Service",
"main": "./dist/index.js",
"jsnext:main": "./src/index.js",
"scripts": {
"format": "prettier-eslint --eslint-config-path ./.eslintrc.js --write $PWD'/**/*.js'",
"dev": "webpack --mode development",
"build": "rm -rf dist && webpack --mode production",
"test": "ava ./dist/test.js && npm run format",
"start": "npm run dev && node cli.js",
"preversion": "npm test",
"prepublish": "npm run build",
"publish": "npm publish",
"pushregistry": "bash push-registry.sh",
"postpublish": "npm run pushregistry gcp && npm run pushregistry do"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/nftoolkit/agenda-rest.git"
},
"files": [
"cli.js",
"settings.js",
"dist"
],
"keywords": [
"schedule",
"scheduling",
"scheduler",
"webservice",
"microservice",
"restful",
"rest",
"agenda"
],
"author": "Keyvan Mir Mohammad Sadeghi <[email protected]>",
"license": "MIT",
"bin": {
"agenda-rest": "cli.js"
},
"bugs": {
"url": "https://github.com/nftoolkit/agenda-rest/issues"
},
"homepage": "https://github.com/nftoolkit/agenda-rest#README",
"devDependencies": {
"@babel/cli": "7.14.8",
"@babel/core": "7.15.0",
"@babel/preset-env": "7.15.0",
"@babel/register": "7.14.5",
"ava": "=2.4.0",
"babel-loader": "8.2.2",
"eslint": "7.32.0",
"prettier": "2.3.2",
"prettier-eslint": "13.0.0",
"prettier-eslint-cli": "5.0.1",
"supertest": "6.1.4",
"webpack": "5.48.0",
"webpack-cli": "4.7.2"
},
"dependencies": {
"agenda": "^4.2.1",
"async-counter": "^1.1.0",
"babel-runtime": "^6.26.0",
"commander": "^8.0.0",
"koa": "^2.10.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"pythonic": "^2.0.3",
"regenerator-runtime": "^0.13.3",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"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
]
}
}
}