-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "escape-from-callback-mountain",
"version": "1.2.31",
"description": "A Modern Guide to Functional Promises w/ examples",
"main": "src/auth.js",
"directories": {
"example": "examples",
"src": "src"
},
"scripts": {
"test": "jscs src && NODE_ENV=production ava --verbose --serial",
"start": "npm install && docker-compose -p task-queue up --build",
"postinstall": "cd examples/distributed-http-task-queue && npm install"
},
"ava": {
"babel": "inherit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justsml/escape-from-callback-mountain.git"
},
"keywords": [
"promises",
"bluebird",
"javascript",
"javascript-guide",
"functional-js",
"functional-patterns"
],
"author": "Dan Levy <Dan@DanLevy.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/justsml/escape-from-callback-mountain/issues"
},
"homepage": "https://github.com/justsml/escape-from-callback-mountain#readme",
"dependencies": {
"ava": "^0.19.1",
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"express": "^4.15.3",
"jscs": "^3.0.7",
"nedb": "^1.8.0",
"superagent": "^3.5.2",
"supertest": "^3.0.0"
}
}