forked from ColinEberhardt/applause-button-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
24 lines (24 loc) · 824 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
{
"scripts": {
"test:get-cost-attribution": "serverless invoke local --function get-cost-attribution",
"test:get-claps": "serverless invoke local --function get-claps --path test/get.json",
"test:update-claps": "serverless invoke local --function update-claps --path test/update.json",
"test:get-multiple": "serverless invoke local --function get-multiple --path test/multiple.json",
"test:invoke-webhooks": "serverless invoke local --function invoke-webhooks --path test/webhooks.json",
"test": "jest",
"test:watch": "jest --watch"
},
"name": "applause-button-server",
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.229.1",
"is_js": "^0.9.0",
"node-fetch": "^2.1.2"
},
"devDependencies": {
"jest": "^22.4.4"
},
"jest": {
"testEnvironment": "node"
}
}