-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
49 lines (49 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
47
48
49
{
"name": "escape-from-callback-mountain",
"version": "2.0.1",
"description": "A Modern Guide to Functional Promises w/ many examples",
"main": "src/auth.fp.js",
"directories": {
"example": "examples",
"src": "src"
},
"scripts": {
"test": "jscs src && NODE_ENV=production ava --verbose --serial src/auth.*.test.js"
},
"ava": {
"babel": "inherit",
"verbose": true
},
"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 <[email protected]>",
"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",
"minio": "^3.1.3",
"mongoose": "^4.11.3",
"nedb": "^1.8.0",
"sequelize": "^5.3.0",
"sqlite3": "^3.1.8",
"superagent": "^3.5.2",
"supertest": "^3.0.0"
}
}