forked from montagejs/collections
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "collections",
"version": "5.0.5-clarify",
"description": "data structures with idiomatic JavaScript collection interfaces",
"homepage": "http://www.collectionsjs.com",
"author": "Kris Kowal <kris@cixar.com> (http://github.com/kriskowal)",
"contributors": [
{
"name": "Benoit Marchant"
}
],
"keywords": [
"collections",
"data structures",
"observable",
"list",
"set",
"map",
"splay"
],
"bugs": {
"mail": "kris@cixar.com",
"url": "http://github.com/montagejs/collections/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://raw.github.com/montagejs/collections/master/LICENSE.md"
}
],
"repository": {
"type": "git",
"url": "http://github.com/montagejs/collections.git"
},
"dependencies": {
"weak-map": "~1.0.x"
},
"devDependencies": {
"jasmine-node": "montagestudio/jasmine-node#master",
"istanbul": "*",
"opener": "*"
},
"scripts": {
"test": "jasmine-node spec",
"cover": "istanbul cover node_modules/jasmine-node/bin/jasmine-node spec && istanbul report html && opener coverage/index.html"
}
}