forked from btushinde/async2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 911 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
30
31
32
33
34
35
36
37
{
"name": "async2",
"version": "0.1.7",
"description": "Better async utilities for node and the browser",
"main": "js/async2.js",
"directories": {
"test": "test"
},
"scripts": {
"pretest": "coffee --bare -o js coffee/async2.coffee",
"test": "mocha --timeout 100000 --reporter spec --bail --ui bdd --colors --timeout 10000 --compilers coffee:coffee-script --require coffee-script --require test/helpers.coffee test/test.coffee"
},
"repository": {
"type": "git",
"url": "git://github.com/mikesmullin/async2.git"
},
"keywords": [
"async",
"asynchronous",
"flow",
"control",
"library",
"node.js",
"node",
"javascript",
"better",
"minimalist",
"improved",
"alternative"
],
"author": "Mike Smullin <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "*"
}
}