-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.93 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
63
64
65
{
"name": "ts-simple-api-proxy-template",
"version": "1.0.0",
"description": "Typescript Lambda function template for a simple API proxy service",
"scripts": {
"build": "tsc",
"watch:build": "tsc --watch",
"test": "nyc --reporter=html --reporter=text mocha --require source-map-support/register -r ts-node/register test/**/*.spec.ts",
"test:watch": "mocha --require source-map-support/register -r ts-node/register --watch-files src, test/**/*.spec.ts --watch",
"integration": "nyc --reporter=html --reporter=text mocha -r ts-node/register --recursive --timeout 5000 integration/**/*.ts",
"deploy": "sls deploy",
"remove": "sls remove"
},
"repository": {
"type": "git",
"url": "https://github.com/aws-lambda-template-generator/ts-simple-api-proxy-template"
},
"keywords": [],
"author": "mdh",
"license": "ISC",
"homepage": "https://github.com/aws-lambda-template-generator",
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"@types/request-promise": "^4.1.42",
"request": "^2.88.0",
"request-promise": "4.2.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/nock": "^11.1.0",
"@types/node": "^13.13.0",
"@types/request-promise": "^4.1.46",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.1.1",
"mocha-typescript": "^1.1.17",
"nock": "^12.0.3",
"nyc": "^15.0.1",
"serverless": "^1.67.3",
"serverless-domain-manager": "^3.3.1",
"serverless-plugin-git-variables": "^4.0.0",
"serverless-webpack": "^5.3.1",
"sinon": "^9.0.2",
"source-map-support": "^0.5.17",
"ts-loader": "^7.0.1",
"tslint": "^6.1.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
}
}