-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
50
51
{
"name": "lazy.js",
"description": "Like Underscore, but lazier",
"version": "0.5.1",
"homepage": "http://dtao.github.io/lazy.js/",
"author": {
"name": "Dan Tao",
"email": "[email protected]",
"url": "http://philosopherdeveloper.com"
},
"browser": "lazy.js",
"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": {
"JSONStream": "0.10.0",
"autodoc": "0.6.4",
"benchmark": "1.0.0",
"deft": "0.2.2",
"jasmine-async": "0.0.1",
"jasmine-node": "1.13.x",
"jsdoc": "3.2.x",
"lodash": "4.2.1",
"memorystream": "0.2.0",
"promises-aplus-tests": "2.1.0",
"race.js": "0.1.4",
"requirejs": "^2.1.20",
"string-table": "0.1.2",
"underscore": "1.8.3"
},
"scripts": {
"test": "npm run-script 'autodoc' && npm run-script 'jasmine' && npm run-script 'amd' && npm run-script 'promise'",
"autodoc": "autodoc -t --variable Lazy lazy.js",
"jasmine": "jasmine-node spec/node_spec.js",
"amd": "node spec/amd_spec.js",
"promise": "promises-aplus-tests spec/async_handle_adapter --reporter dot --bail"
}
}