forked from logandk/serverless-wsgi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.39 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
{
"name": "serverless-wsgi",
"version": "1.7.8",
"engines": {
"node": ">=10"
},
"description": "Serverless WSGI Plugin",
"author": "logan.dk",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/logandk/serverless-wsgi"
},
"keywords": [
"serverless",
"wsgi",
"flask",
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com"
],
"files": [
"CHANGELOG.md",
"index.js",
"LICENSE",
"package.json",
"README.md",
"requirements.py",
"requirements.txt",
"serve.py",
"wsgi_handler.py",
"serverless_wsgi.py"
],
"main": "index.js",
"bin": {},
"scripts": {
"test": "istanbul cover -x '*.test.js' node_modules/mocha/bin/_mocha '*.test.js' -- -R spec",
"lint": "eslint *.js",
"pytest": "py.test --cov=serve --cov=requirements --cov=wsgi_handler --cov=serverless_wsgi --cov-report=html",
"pylint": "flake8 --exclude node_modules"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-as-promised": "^7.0.0",
"eslint": "^7.25.0",
"istanbul": "^0.4.4",
"mocha": "^8.3.2",
"sinon": "^10.0.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"fs-extra": "^9.1.0",
"hasbin": "^1.2.3",
"lodash": "^4.17.21"
}
}