forked from dtao/lazy.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "lazy.js",
"description": "Like Underscore, but lazier",
"version": "0.3.2",
"homepage": "http://dtao.github.io/lazy.js/",
"author": {
"name": "Dan Tao",
"email": "[email protected]",
"url": "http://philosopherdeveloper.com"
},
"main": "lazy.node.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dtao/lazy.js.git"
},
"bugs": {
"url": "https://github.com/dtao/lazy.js/issues"
},
"keywords": [
"lazy",
"functional",
"performance",
"speed",
"util"
],
"devDependencies": {
"autodoc": ">= 0.6.1",
"deft": ">= 0.2.0",
"jasmine-async": "*",
"jasmine-node": "1.13.x",
"jsdoc": "3.2.x",
"JSONStream": ">= 0.7.1",
"memorystream": ">= 0.2.0",
"promises-aplus-tests": ">= 2.0.4",
"benchmark": "1.0.0",
"race.js": "0.1.4",
"lodash": "2.0.0",
"underscore": "1.5.2",
"string-table": "0.1.2"
},
"scripts": {
"test": "npm run-script 'autodoc' && npm run-script 'jasmine' && npm run-script 'promise'",
"autodoc": "autodoc -t lazy.js",
"jasmine": "jasmine-node spec/node_spec.js",
"promise": "promises-aplus-tests spec/async_handle_adapter --bail"
}
}