-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 997 Bytes
/
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
{
"name": "serverless-lambda-router",
"version": "1.2.0",
"description": "Lambda router for serverless framework",
"main": "dist/index.js",
"scripts": {
"build": "babel -d dist src",
"watch": "babel -w -d dist src",
"prepublish": "npm run build",
"lint": "eslint src/",
"test": "mocha test/**/*.spec.js",
"test:watch": "mocha -w test/**/*.spec.js"
},
"author": "Steven White <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/swhite24/serverless-lambda-router.git"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.0",
"babel-eslint": "^7.2.1",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-runtime": "^6.23.0",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"mocha": "^3.2.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0"
},
"dependencies": {
"boom": "^7.2.0"
}
}