-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 966 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": "jam3-lesson-asyncjs",
"version": "1.0.0",
"description": "This is a lesson on assynchronous javascript. It covers Node EventEmitter, Node Style Callbacks, and Promises",
"main": "index.js",
"bin": {
"jam3-lesson-asyncjs": "index.js"
},
"preferGlobal": true,
"license": "MIT",
"author": {
"name": "Mikko Haapoja",
"email": "[email protected]",
"url": "https://github.com/mikkoh"
},
"dependencies": {
"bluebird": "^2.9.24",
"browser-lessons": "^1.3.1",
"signals": "^1.0.0",
"tape": "^3.5.0"
},
"devDependencies": {},
"scripts": {
"test": "node test.js"
},
"keywords": [
"browser,lessons,jam3,assynchronous,assync,promises,callbacks,events"
],
"repository": {
"type": "git",
"url": "git://github.com/Jam3/jam3-lesson-asyncjs.git"
},
"homepage": "https://github.com/Jam3/jam3-lesson-asyncjs",
"bugs": {
"url": "https://github.com/Jam3/jam3-lesson-asyncjs/issues"
}
}