-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1018 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
25
26
27
28
29
30
31
32
{
"name": "sms-delivery-service",
"version": "1.0.0",
"description": "SMS Delivery Service",
"scripts": {
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint -p tsconfig.json -c tslint.json --fix",
"deploy:test": "serverless deploy -s test --verbose",
"test": "./node_modules/.bin/nyc mocha --require ts-node/register test/**/*Test.ts"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.51",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.11",
"aws-sdk": "^2.1166.0",
"chai": "^4.3.6",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"serverless-plugin-typescript": "^2.1.2",
"sinon": "^13.0.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-standard": "^9.0.0",
"typescript": "^3.8.3"
},
"author": "Alexandre Ytac",
"license": "ISC",
"dependencies": {
"winston": "^3.8.0"
}
}