-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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": "lambda-foundation",
"version": "3.0.6",
"description": "Common helpers for Lambda backed microservices",
"main": "index.js",
"scripts": {
"test": "tape test/*-test.js | tap-spec",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/Testlio/lambda-foundation.git"
},
"keywords": [
"lambda",
"microservice"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/Testlio/lambda-foundation/issues"
},
"directories": {
"lib": "lib",
"test": "test"
},
"browserify": {
"transform": [
"./lib/configuration/transform.js",
"./lib/discovery/transform.js"
]
},
"homepage": "https://github.com/Testlio/lambda-foundation#readme",
"dependencies": {
"falafel": "^1.2.0",
"jsonwebtoken": "^9.0.0",
"lodash": "^4.3.0",
"promiscuous": "^0.6.0",
"through2": "^2.0.1",
"sinon": "^1.17.3",
"tape": "^4.4.0",
"joi": "5.x.x",
"vogels": "^2.2.0"
},
"devDependencies": {
"eslint": "^2.0.0",
"tap-spec": "^4.1.1"
}
}