-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.07 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
{
"name": "express-appengine-handlers",
"version": "1.0.2",
"description": "Lifecycle request handlers for express apps running in Google App Engine Managed VMs",
"main": "index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"codecov": "cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/homezen/express-appengine-handlers.git"
},
"keywords": [
"gae",
"appengine",
"google",
"vm"
],
"author": "homezen",
"license": "MIT",
"bugs": {
"url": "https://github.com/homezen/express-appengine-handlers/issues"
},
"homepage": "https://github.com/homezen/express-appengine-handlers#readme",
"dependencies": {
"express": "^4.13.1"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"istanbul": "^0.4.4",
"mocha": "^4.0.0",
"proxyquire": "^1.6.0",
"supertest": "^3.0.0"
}
}