This repository was archived by the owner on Sep 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.34 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.34 KB
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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "glambda",
"version": "1.3.2",
"description": "A module for mocking and testing AWS API Gateway in conjunction with Lambda functions.",
"main": "build/app.js",
"repository": {
"type": "git",
"url": "https://github.com/TechnologyAdvice/gateway-lambda"
},
"keywords": [
"amazon",
"aws",
"api",
"gateway",
"lambda",
"node",
"mock",
"staging",
"testing"
],
"author": "TechnologyAdvice <devteam@technologyadvice.com>",
"scripts": {
"all": "make",
"start": "make start",
"clean": "make clean",
"build": "make build",
"test": "make test",
"cover": "make cover",
"lint": "make lint",
"doc": "make doc",
"report": "make report",
"dev": "make dev"
},
"license": "MIT",
"devDependencies": {
"assert": "^1.3.0",
"babel": "^5.8.23",
"babel-eslint": "^4.1.3",
"babel-istanbul": "^0.3.20",
"chai": "^3.3.0",
"esdoc": "^0.1.3",
"eslint": "^1.5.1",
"istanbul-harmony": "^0.3.16",
"mocha": "^2.3.3",
"nodemon": "^1.7.0",
"plato": "^1.5.0",
"should": "^7.1.0",
"sinon": "^1.17.0",
"sinon-chai": "^2.8.0",
"supertest": "^1.1.0"
},
"dependencies": {
"bluebird": "^2.10.1",
"body-parser": "^1.14.0",
"bristol": "^0.3.2",
"express": "^4.13.1",
"lodash": "^3.10.1",
"yamljs": "^0.2.4"
}
}