-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "mailgun-hook",
"version": "1.0.0",
"description": "Simple maingun hook to publish and persist logs",
"main": "index.js",
"scripts": {
"test": "cross-env-shell NODE_ENV=test mocha --timeout 15000 --require ./node_modules/ts-node/register \"tests/**/*.ts\"",
"coverage": "nyc npm run test",
"start": " ts-node src/cliInit.ts",
"compile": "node ./node_modules/typescript/bin/tsc --outDir ./distsrc/ -p tsconfig.json",
"build": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swarupbam/mailgun-hook.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/swarupbam/mailgun-hook/issues"
},
"homepage": "https://github.com/swarupbam/mailgun-hook#readme",
"dependencies": {
"aws-sdk": "^2.656.0",
"mysql2": "^2.1.0",
"nconf": "^0.10.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.21.6",
"sequelize-typescript": "^1.1.0",
"uuid": "^7.0.3",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.11.1",
"@types/sinon": "^9.0.0",
"@types/validator": "^13.0.0",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"mocha": "^7.1.2",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"prettier": "^2.0.4",
"sinon": "^9.0.2",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
}
}