forked from softprops/serverless-localhost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.84 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
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "serverless-localhost",
"repository": {
"type": "git",
"url": "https://github.com/softprops/serverless-localhost.git"
},
"license": "MIT",
"displayName": "serverless-localhost",
"description": "Runs a local http server used to trigger your http functions in any lambda runtime",
"version": "0.1.0",
"categories": [
"Other"
],
"main": "dist/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"compile": "tsc -p ./",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"pretest": "npm run lint",
"test": "nyc --require ts-node/register --require source-map-support/register mocha --recursive tests/*.ts",
"watch": "tsc -watch -p ./"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.1.1",
"dockerode": "^2.5.8",
"express": "^4.16.4",
"serverless": "^1.36.3",
"typescript-formatter": "^7.2.2"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/debug": "0.0.31",
"@types/dockerode": "^2.5.10",
"@types/express": "^4.16.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.16.1",
"source-map-support": "^0.5.10",
"ts-node": "^7.0.1",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.2.4"
}
}