-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "level-jobs",
"version": "2.1.1",
"description": "Job Queue in LevelDB",
"main": "index.js",
"browser": "client.js",
"scripts": {
"test": "tap tests/test.js tests/client.js"
},
"repository": {
"type": "git",
"url": "git://github.com/pgte/level-jobs.git"
},
"keywords": [
"leveldb",
"job",
"queue"
],
"author": "pgte",
"contributors": [
"Pedro Teixeira <[email protected]>",
"Tim Oxley <[email protected]>",
"Lars-Magnus Skog <[email protected]>",
"Jannis Redmann <[email protected]>",
"Ash",
"Mark Vayngrib <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pgte/level-jobs/issues"
},
"dependencies": {
"backoff": "~2.3.0",
"json-stringify-safe": "~5.0.0",
"level-hooks": "~4.5.0",
"level-sublevel": "~6.4.6",
"level-write-stream": "~1.0.0",
"xtend": "~2.0.6"
},
"devDependencies": {
"level": "~1.3.0",
"tap": "~0.4.4",
"rimraf": "~2.2.2",
"async": "*"
}
}