-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.39 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
47
48
49
50
51
52
53
{
"author": "Christopher Tetreault",
"contributors": [
{
"name": "Christopher Tetreault",
"url": "https://github.com/AbsentSemicolon"
},
{
"name": "Andy Gertjejansen",
"email": "[email protected]",
"url": "https://github.com/quantumew"
},
{
"name": "Lucas Nagle",
"email": "[email protected]",
"url": "https://github.com/lnagle93"
}
],
"bugs": {
"url": "https://github.com/tests-always-included/ddq/issues"
},
"description": "DeDuplicated Queue",
"devDependencies": {
"codecov": "^1.0.1",
"ddq-backend-mock": "^2.0.1",
"eslint": "^3.5.0",
"istanbul": "^0.4.5",
"jasmine": "~2.5.2",
"jasmine-test-helpers": "^1.1.0",
"nodemon": "~1.11.0"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/tests-always-included/ddq#readme",
"keywords": [
"queue",
"node",
"deduplicated"
],
"license": "MIT",
"main": "lib/index.js",
"name": "ddq",
"repository": {
"type": "git",
"url": "git+https://github.com/tests-always-included/ddq.git"
},
"scripts": {
"test": "istanbul cover jasmine && eslint .",
"watch": "nodemon --exec jasmine"
},
"version": "2.0.3"
}