-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.63 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
{
"name": "cloudwatch-postman",
"version": "4.0.2",
"description": "A Node proxy to post data to AWS CloudWatch",
"main": "index.js",
"scripts": {
"build": "npm run clean && babel lib -d dist -s",
"clean": "rm -rf dist/*",
"start": "npm run build && node dist/index.js",
"serve": "npm run build && node -r dotenv/config dist/index.js",
"test": "BABEL_ENV=test NODE_ENV=test mocha --exit --require @babel/register",
"dev:test": "BABEL_ENV=test NODE_ENV=test mocha --exit -r @babel/register -r dotenv/config",
"dev:start": "npm run build && node -r dotenv/config dist/index.js",
"jobs:start": "npm run build && node -r dotenv/config dist/worker.js"
},
"repository": {
"type": "git",
"url": "https://github.com/KissKissBankBank/cloudwatch-postman.git"
},
"author": {
"name": "KissKissBankBank & Co",
"email": "dev@kisskissbankbank.com",
"url": "https://www.kisskissbankbank.com/fr"
},
"contributors": [
{
"name": "Fanny Cheung",
"email": "fanny.cheung@kisskissbankbank.com",
"url": "http://ynote.hk/"
}
],
"license": "MIT",
"dependencies": {
"aws-sdk": "^2.457.0",
"bull": "^3.9.1",
"dotenv": "^8.0.0",
"ioredis": "^4.9.5",
"request": "^2.88.0",
"restify": "^8.3.2",
"restify-cors-middleware": "^1.1.1"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/register": "^7.4.4",
"aws-sdk-mock": "^4.4.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"sinon-test": "^2.4.0"
}
}