forked from jessetane/queue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 942 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": "queue",
"version": "4.4.2",
"description": "asynchronous function queue with adjustable concurrency",
"keywords": [
"queue",
"async",
"asynchronous",
"synchronous",
"job",
"task",
"concurrency",
"concurrent"
],
"dependencies": {
"inherits": "~2.0.0"
},
"devDependencies": {
"browserify": "^5.9.1",
"coveralls": "^2.11.2",
"istanbul": "^0.3.2",
"standard": "^8.6.0",
"tape": "^2.14.0"
},
"scripts": {
"test": "standard && node test",
"test-browser": "standard && browserify test/index.js > test/bundle.js && echo \"open test/index.html in your browser\"",
"travis": "standard && istanbul cover test --report lcovonly && cat coverage/lcov.info | coveralls",
"example": "node example",
"lint": "standard"
},
"repository": "https://github.com/jessetane/queue.git",
"author": "Jesse Tane <[email protected]>",
"license": "MIT"
}