forked from serverless/serverless-python-requirements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.81 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
79
80
{
"name": "serverless-python-requirements",
"version": "5.1.0",
"engines": {
"node": ">=10.0"
},
"description": "Serverless Python Requirements Plugin",
"author": "United Income <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/UnitedIncome/serverless-python-requirements"
},
"keywords": [
"serverless",
"python",
"requirements",
"pip",
"serverless framework plugin",
"serverless applications",
"serverless plugins",
"api gateway",
"lambda",
"aws",
"aws lambda",
"amazon",
"amazon web services",
"serverless.com"
],
"files": [
"index.js",
"lib/*.js",
"LICENSE",
"package.json",
"unzip_requirements.py",
"README.md"
],
"main": "index.js",
"bin": {},
"scripts": {
"ci:lint": "eslint *.js lib/*.js --format junit --output-file ~/reports/eslint.xml && prettier -c '{.,lib}/*.{js,md}'",
"test": "node test.js",
"lint": "eslint *.js lib/*.js && prettier -c '{.,lib}/*.{js,md}'",
"format": "prettier --write '{.,lib}/*.{js,md}'"
},
"devDependencies": {
"eslint": "^5.16.0",
"prettier": "*",
"cross-spawn": "*",
"deasync-promise": "*",
"tape": "*"
},
"dependencies": {
"@iarna/toml": "^2.2.3",
"appdirectory": "^0.1.0",
"bluebird": "^3.0.6",
"fs-extra": "^8.1.0",
"glob-all": "^3.1.0",
"is-wsl": "^2.0.0",
"jszip": "^3.1.0",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"lodash.uniqby": "^4.0.0",
"lodash.values": "^4.3.0",
"rimraf": "^3.0.2",
"sha256-file": "1.0.0",
"shell-quote": "^1.6.1"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true
}
},
"prettier": {
"semi": true,
"singleQuote": true
}
}