-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "double-ended-queue",
"description": "Extremely fast double-ended queue implementation",
"version": "2.1.0-0",
"keywords": [
"data-structure",
"data-structures",
"queue",
"deque",
"double-ended-queue"
],
"scripts": {
"test": "grunt test"
},
"homepage": "https://github.com/petkaantonov/deque",
"repository": {
"type": "git",
"url": "git://github.com/petkaantonov/deque.git"
},
"bugs": {
"url": "http://github.com/petkaantonov/deque/issues"
},
"license": "MIT",
"author": {
"name": "Petka Antonov",
"email": "[email protected]",
"url": "http://github.com/petkaantonov/"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jshint": "~0.6.4",
"jshint-stylish": "latest",
"acorn": "~0.3.1",
"mocha": "~1.12.1",
"grunt-cli": "~0.1.9",
"bluebird": "~0.11",
"benchmark": "~1.0.0",
"deque": "0.0.4",
"q": "~0.9.7",
"semver-utils": "~1.1.0"
},
"readmeFilename": "README.md",
"main": "./js/deque.js"
}