-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.52 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
{
"name": "cmda",
"version": "1.2.0",
"description": "A command line tool for executing commands on, and copying files to/from AWS Lambda, especially useful with EFS",
"author": "Michael Hart <[email protected]> (https://github.com/mhart)",
"license": "MIT",
"repository": "github:lambci/cmda",
"bin": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"tsc": "tsc",
"lint": "eslint .",
"prepare": "npm run build:cli",
"build": "npm run build:cli && npm run build:lambda",
"build:cli": "webpack --config-name cli && chmod +x dist/index.js",
"build:lambda": "webpack --config-name lambda",
"deploy": "npm run build:lambda && sam deploy",
"package": "npm run build:lambda && sam package --output-template-file packaged.yml --resolve-s3",
"publish-sar": "npm run package && sam publish -t packaged.yml"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/tar": "^4.0.3",
"aws-sdk": "github:mhart/aws-sdk-js#fix-3311",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"minimist": "^1.2.5",
"prettier": "^2.1.2",
"tar": "^6.0.5",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
}
}