-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "lambda-req",
"version": "1.2.3",
"description": "AWS Lambda router for NodeJS",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"test": "NODE_ENV=test mocha --opts tests/mocha.opts",
"test-coverage": "nyc npm run test",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "NODE_ENV=production babel src --out-dir lib",
"prebuild": "rm -rf lib",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doomhz/node-lambda-req.git"
},
"keywords": [
"aws",
"lambda",
"request",
"wrapper",
"router",
"api",
"gateway",
"sns",
"sqs",
"amazon"
],
"author": "Dumitru Glavan",
"license": "ISC",
"bugs": {
"url": "https://github.com/doomhz/node-lambda-req/issues"
},
"homepage": "https://github.com/doomhz/node-lambda-req#readme",
"devDependencies": {
"aws-sdk": "^2.32.0",
"babel-cli": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.0.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-preset-env": "^1.2.2",
"babel-register": "^6.24.0",
"coveralls": "^2.12.0",
"eslint": "^3.18.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"should": "^11.2.1",
"sinon": "^2.0.0"
},
"dependencies": {
"debug": "^2.6.3"
},
"nyc": {
"require": [
"babel-register"
],
"exclude": [
"tests/",
"lib/",
"examples/"
],
"sourceMap": false,
"instrument": false,
"reporter": [
"text",
"html",
"clover"
]
}
}