-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 928 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
38
39
40
{
"name": "heya-async",
"version": "1.0.1",
"description": "Asynchronous utilities: promises, deferreds.",
"main.js": "index.js",
"directories": {
"test": "tests"
},
"devDependencies": {
"heya-globalize": "^1.0.3",
"heya-unit": ">=0.2"
},
"scripts": {
"test": "node tests/tests.js",
"dist": "node node_modules/heya-globalize/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/heya/async.git"
},
"keywords": [
"asynchronous",
"promise",
"promises",
"event",
"events",
"event-driven programming",
"EDP"
],
"contributors": [
"Eugene Lazutkin <[email protected]> (http://lazutkin.com/)",
"Max Motovilov <[email protected]>"
],
"license": "BSD-3-Clause",
"browserGlobals": {
"!root": "heya.async",
"./Deferred-ext": "!heya.async.Deferred",
"./FastDeferred-ext": "!heya.async.FastDeferred"
}
}