-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 899 Bytes
/
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
{
"name": "queuing",
"version": "1.3.0",
"description": "que tasks",
"private": false,
"engines": {
"node": ">=8 <=12"
},
"main": "index.js",
"scripts": {
"test": "node test",
"lint": "eslint --fix --ext .js .",
"cover": "nyc --reporter=lcov node test",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags"
},
"keywords": [
"queue task retry queuing"
],
"author": "unibtc@gmail.com",
"license": "MIT",
"repository": "https://github.com/uniibu/queuing",
"bugs": {
"url": "https://github.com/uniibu/queuing/issues"
},
"homepage": "https://github.com/uniibu/queuing#readme",
"devDependencies": {
"eslint": "6.7.2",
"nyc": "^14.1.1",
"tape": "4.11.0"
},
"dependencies": {}
}