-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.13 KB
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
{
"name": "round-robin-js",
"version": "3.0.10",
"description": "an implementation of round robin as a data structure",
"main": "index.js",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eyas-ranjous/round-robin-js.git"
},
"keywords": [
"round robin",
"round robin js",
"sequential round robin",
"random round robin",
"priority round robin"
],
"author": "Eyas Ranjous <eyas.ranjous@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eyas-ranjous/round-robin-js/issues"
},
"homepage": "https://github.com/eyas-ranjous/round-robin-js#readme",
"dependencies": {
"@datastructures-js/linked-list": "^5.2.2",
"@datastructures-js/priority-queue": "^6.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"grunt": "^1.0.4",
"grunt-eslint": "^22.0.0",
"grunt-mocha-istanbul": "^5.0.2",
"grunt-mocha-test": "^0.13.3",
"istanbul": "^0.4.5",
"mocha": "^6.2.2",
"sinon": "^9.0.2"
}
}