-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 816 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 816 Bytes
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
{
"name": "chunked-queue",
"version": "0.1.4",
"description": "Manage long-running tasks without losing interactivity",
"main": "index.js",
"module": "index.js",
"scripts": {
"lint": "eslint index.js",
"test": "npm run lint",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GlobeletJS/chunked-queue.git"
},
"keywords": [
"queue",
"task",
"priority"
],
"author": "Jeshurun Hembd",
"license": "MIT",
"bugs": {
"url": "https://github.com/GlobeletJS/chunked-queue/issues"
},
"homepage": "https://github.com/GlobeletJS/chunked-queue#readme",
"dependencies": {
"zero-timeout": "^0.0.6"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-globeletjs": "^0.0.6"
}
}