-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.09 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
{
"name" : "linkd"
, "description" : "A fast and extendable doubly linked list"
, "version" : "3.0.0"
, "homepage" : "https://github.com/eventEmitter/linkd"
, "author" : "Michael van der Weg <michael@joinbox.com> (http://joinbox.com/)"
, "license" : "MIT"
, "repository": {
"url" : "https://github.com/eventEmitter/linkd.git"
, "type" : "git"
}
, "engines": {
"node" : ">=v7.7"
}
, "bugs": {
"url" : "https://github.com/eventEmitter/linkd/issues"
}
, "dependencies": {
"ee-event-emitter" : "1.x"
, "ee-log" : "1.x"
}
, "devDependencies": {
"mocha" : "3.x"
}
, "optionalDependencies": {}
, "keywords" : []
, "scripts": {
"test" : "./node_modules/mocha/bin/mocha --reporter spec"
}
}