forked from BlueBlock/MoonMail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.17 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
{
"name": "events-router",
"version": "1.0.0",
"description": "",
"main": "handler.js",
"scripts": {
"test": "NODE_ENV=test mocha --require choma --require babel-register $(find ./ \\( -name '*.test.js' -o -name '*.spec.js' \\) -not -path './node_modules/*' -not -path './**/node_modules/*')",
"watch": "NODE_ENV=test mocha --watch --require choma --require babel-register $(find ./ \\( -name '*.test.js' -o -name '*.spec.js' \\) -not -path './node_modules/*' -not -path './**/node_modules/*')",
"deploy": "yarn sls deploy -s dev -r us-east-1",
"deploy:prod": "yarn sls deploy -s prod -r eu-west-1"
},
"author": "David García <[email protected]>",
"license": "ISC",
"devDependencies": {
"aws-sdk": "^2.197.0",
"babel-cli": "^6.26.0",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"choma": "^1.1.0",
"mocha": "^5.0.1",
"serverless": "^1.26.1",
"serverless-plugin-optimize": "^3.0.4-rc.1",
"sinon": "^4.3.0",
"sinon-chai": "^2.14.0"
},
"dependencies": {
"aws-event-parser": "^1.0.0",
"bluebird": "^3.5.1",
"joi": "^13.1.2",
"moment": "^2.20.1",
"ramda": "^0.25.0",
"uuid": "^3.2.1"
}
}