-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 827 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
{
"name": "res-promises",
"version": "1.0.0",
"description": "Express middleware that adds promises object and render method that waits for promises",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechinworth/res-promises.git"
},
"keywords": [
"express",
"middleware",
"promise"
],
"author": "Luke Chinworth",
"license": "ISC",
"bugs": {
"url": "https://github.com/lukechinworth/res-promises/issues"
},
"files": [
"index.js"
],
"homepage": "https://github.com/lukechinworth/res-promises#readme",
"dependencies": {
"bluebird": "^3.4.7",
"lodash": "^4.17.4"
},
"devDependencies": {
"express": "^4.14.1",
"pug": "^2.0.0-beta11"
}
}