-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "infinity",
"version": "0.0.4",
"private": false,
"description": "Infinite sequences for Node.js. Supports typical array functions and more, all evaluated lazily.",
"homepage": "",
"keywords": [
"sequence",
"stream",
"functional",
"infinite",
"filter",
"range"
],
"author": "",
"engines": {
"node": ">=0.8.2"
},
"scripts": {
"clean": "rm -fr node_modules",
"test": "./node_modules/.bin/mocha -R spec",
"cover": "./node_modules/.bin/mocha -r blanket -R html-cov > coverage.html",
"blanket": {
"loader": "./node-loaders/coffee-script",
"pattern": "lib",
"data-cover-never": "node_modules"
}
},
"dependencies": {
"coffee-script": "1.3.x"
},
"devDependencies": {
"underscore": "1.3.x",
"mocha": "1.3.x",
"should": "1.1.x",
"blanket": "~1.1.5"
},
"main": "bootstrap.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/rprieto/infinity.git"
},
"bugs": {
"url": "https://github.com/rprieto/infinity/issues"
}
}