-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "ses-logger",
"description": "Log and save and notifications from SES",
"version": "0.0.1",
"private": true,
"author": "Mohammad Abu Musa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "hhttps://github.com/mabumusa1/SES-Events-Logger/issues"
},
"homepage": "https://github.com/mabumusa1/SES-Events-Logger#readme",
"devDependencies": {
"axios-mock-adapter": "^1.19.0",
"glob": "^7.1.6",
"husky": "^4.3.0",
"jest": "^24.7.1",
"lambda-tester": "^4.0.1",
"standard": "^16.0.2",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"scripts": {
"test": "jest --coverage",
"testlocal": "export $(cat .env | xargs) && export TZ=Asia/Amman && jest",
"build": "webpack",
"lint": "standard",
"lintfix": "standard --fix"
},
"dependencies": {
"axios": "^0.21.0",
"promise-mysql": "^4.1.3"
},
"standard": {
"env": [
"jest",
"jasmine"
]
}
}