watchdog-proxy/package.json

41 строка
1.2 KiB
JSON
Исходник Обычный вид История

2018-05-01 20:49:43 +03:00
{
"name": "watchdog-proxy",
"version": "0.0.1",
"description": "Rate limiting proxy for watchdog requests",
"scripts": {
"deploy": "serverless deploy",
"lint": "eslint functions lib test",
2018-05-01 20:49:43 +03:00
"logs": "serverless logs",
"remove": "serverless remove",
"test": "npm-run-all lint test:js",
"test:js": "mocha --recursive test",
"watch": "onchange -v -i \"{functions,lib,test}/**/*.js\" -- npm run test",
"watch:deploy": "onchange -v \"functions/*.js\" \"lib/*.js\" -- npm run deploy"
2018-05-01 20:49:43 +03:00
},
"homepage": "https://github.com/mozilla/watchdog-proxy/",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/watchdog-proxy.git"
},
"author": "Les Orchard <me@lmorchard.com>",
"license": "MPL-2.0",
"devDependencies": {
2018-05-05 00:22:44 +03:00
"aws-sdk": "2.233.1",
2018-05-04 23:06:39 +03:00
"chai": "4.1.2",
"eslint": "4.19.1",
"eslint-plugin-mozilla": "0.11.0",
"eslint-plugin-no-unsanitized": "3.0.0",
"mocha": "5.1.1",
"npm-run-all": "4.1.3",
2018-05-07 18:25:17 +03:00
"onchange": "4.0.0",
"serverless": "1.27.2",
2018-05-04 23:06:39 +03:00
"serverless-s3-remover": "0.4.1",
"serverless-sqs-alarms-plugin": "0.1.7",
2018-05-07 14:08:59 +03:00
"sinon": "5.0.6"
2018-05-01 20:49:43 +03:00
},
"dependencies": {
2018-05-04 23:06:39 +03:00
"request": "2.85.0",
"request-promise-native": "1.0.5"
2018-05-01 20:49:43 +03:00
}
}