forked from balassy/aws-lambda-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.92 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
56
57
58
59
60
61
62
{
"name": "lambda-typescript",
"version": "3.0.3",
"description": "A sample to create AWS Lambda functions in TypeScript with Serverless.",
"main": "handler.js",
"scripts": {
"analyse": "npm run lint && npm run test",
"clean": "rimraf .build .serverless .nyc_output coverage",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prebuild": "npm run clean && npm run analyse",
"build": "serverless package",
"predeploy": "npm run clean && npm run analyse",
"deploy": "serverless deploy",
"deploy:init": "serverless create_domain",
"postdeploy": "npm run test:integration",
"lint": "tslint --project . --format verbose",
"start": "serverless offline start",
"pretest": "npm run clean",
"test": "nyc mocha --config ./test/.mocharc.yml",
"test:integration": "mocha --config ./test/integration/.mocharc.yml"
},
"keywords": [
"aws",
"lambda",
"serverless",
"tslint",
"typescript"
],
"author": "György Balássy",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/balassy/aws-lambda-typescript.git"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.27",
"@types/chai": "^4.1.7",
"@types/chance": "^1.0.4",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"@types/request": "^2.48.2",
"@types/request-promise-native": "^1.0.16",
"aws-sdk": "^2.510.0",
"chai": "^4.2.0",
"chance": "^1.0.18",
"coveralls": "^3.0.4",
"mocha": "^6.2.0",
"nyc": "^14.0.0",
"request-promise-native": "^1.0.7",
"rimraf": "^3.0.0",
"serverless-aws-documentation": "^1.1.0",
"serverless-domain-manager": "^3.2.2",
"serverless-offline": "^5.10.1",
"serverless-plugin-typescript": "^1.1.9",
"serverless-stack-output": "^0.2.3",
"source-map-support": "^0.5.12",
"ts-mockito": "^2.4.2",
"ts-node": "^8.3.0",
"tslint": "^5.17.0",
"typescript": "^3.5.2"
}
}