-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
{
"name": "feathers-bee-queue",
"description": "A Feathers service adapter for Bee-Queue jobs",
"version": "2.1.1",
"homepage": "https://github.com/compwright/feathers-bee-queue",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin",
"bee-queue"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/compwright/feathers-bee-queue.git"
},
"author": {
"name": "Jonathon Hill",
"email": "[email protected]",
"url": "https://compwright.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/compwright/feathers-bee-queue/issues"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u compwright -p feathers-bee-queue && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/*.js lib/**/*.js test/*.js test/**/*.js --fix",
"mocha": "mocha --recursive test/ --exit",
"coverage": "nyc npm run mocha",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
]
},
"nyc": {
"cache": true,
"cacheDir": ".nyc_cache",
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text-summary"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^4.5.11",
"@feathersjs/adapter-tests": "^4.5.11",
"@feathersjs/errors": "^4.5.11",
"lodash.assignin": "^4.2.0",
"sift": "^13.5.4"
},
"devDependencies": {
"@feathersjs/feathers": "^4.5.11",
"bee-queue": "^1.4.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"semistandard": "*"
},
"peerDependencies": {
"bee-queue": "^1.4.0"
}
}