-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 964 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 964 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
35
36
{
"name": "zeroq",
"version": "1.0.10",
"description": "Fast and simple in-memory queue implementation with configurable max concurrecy",
"main": "src/zeroq.js",
"types": "src/zeroq.d.ts",
"scripts": {
"test": "mocha --recursive --reporter spec",
"watch-test": "mocha --recursive --watch --reporter spec",
"test-ci": "istanbul cover ./node_modules/mocha/bin/_mocha test/**/*.js --report lcovonly -- -R spec && cat ./coverage/lcov.info"
},
"devDependencies": {
"mocha": "^5.1.1",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"istanbul": "0.4.5"
},
"keywords": [
"queue",
"fast",
"concurrecy",
"async",
"simple",
"bulcks"
],
"repository": {
"type": "git",
"url": "https://github.com/hisco/zeroq.git"
},
"bugs": {
"url": "https://github.com/hisco/zeroq/issues"
},
"homepage": "https://github.com/hisco",
"author": "Eyald <hisco@googlegroups.com>",
"license": "MIT"
}