-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.56 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
{
"name": "moleculer-agenda",
"version": "1.0.0",
"description": "Moleculer Framework Addons: Job Scheduling for Agenda",
"main": "index.js",
"scripts": {
"ci": "jest --watch",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint --ext=.js src test",
"deps": "npm-check -u",
"test": "jest --coverage",
"commit": "cz",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreyunugro/moleculer-agenda.git"
},
"keywords": [
"moleculer",
"moleculerjs",
"agenda"
],
"author": "Andreas Y Nugroho",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreyunugro/moleculer-agenda/issues"
},
"homepage": "https://github.com/andreyunugro/moleculer-agenda#readme",
"devDependencies": {
"commitizen": "^4.2.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.3.0",
"delay": "^5.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"jest": "^27.3.1",
"moleculer": "^0.14.18",
"mongodb-memory-server": "^7.5.1",
"nodemon": "^2.0.14",
"npm-check": "^5.9.2",
"standard-version": "^9.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"agenda": "^4.2.1"
},
"files": [
"index.*",
"src/*"
],
"engines": {
"node": ">= 12.22.x"
},
"peerDependencies": {
"moleculer": "^0.14.0"
}
}