forked from sudhirj/simply-deferred
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 809 Bytes
/
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
{
"author": "Sudhir Jonathan <[email protected]> (http://www.sudhirjonathan.com)",
"name": "simply-deferred",
"description": "A deferred library for Node.js and the browser with a simplified jQuery compatible API",
"version": "3.0.0",
"homepage": "http://sudhirj.github.com/simply-deferred/",
"repository": {
"type": "git",
"url": "git://github.com/sudhirj/simply-deferred.git"
},
"main": "./deferred",
"dependencies": {},
"devDependencies": {
"coffee-script": "^1.10.0",
"mocha": "*",
"uglify-js": "*",
"underscore": "*"
},
"scripts": {
"build": "coffee -c *.coffee",
"buildWatch": "coffee -cw *.coffee",
"test": "mocha *.js -G",
"testWatch": "mocha *.js -Gw"
},
"optionalDependencies": {},
"engines": {
"node": "*"
}
}