-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 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
38
39
40
41
{
"name": "lambda-formation",
"version": "0.1.11",
"publishConfig": {
"tag": "latest"
},
"description": "A small framework for building nodejs AWS Lambda projects that are compatible with AWS CloudFormation Custom Resources",
"main": "index.js",
"scripts": {
"test": "mocha test/unit/*.test.js test/integration/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/SungardAS/lambda-formation.git"
},
"keywords": [
"lambda-formation"
],
"author": "kevin.mcgrath@sungardas.com",
"license": "Apache-2.0",
"bugs": {
"url": "/~https://github.com/SungardAS/lambda-formation/issues"
},
"homepage": "/~https://github.com/SungardAS/lambda-formation#readme",
"dependencies": {
"caller-id": "^0.1.0",
"cfn-responder": "^1.0.2",
"lodash": "^4.17.4",
"request": "^2.81.0",
"underscore.string": "^3.3.4",
"winston": "^2.3.1"
},
"devDependencies": {
"assert": "^1.4.1",
"coveralls": "^2.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.4.1",
"nock": "^9.0.13",
"vows": "^0.8.1"
}
}