-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.4 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
{
"name": "TweetsLineByLine",
"version": "4.2.0",
"description": "Written works in tweets line by line.",
"author": "JP",
"license": "ISC",
"keywords": [],
"repository": {
"type": "git",
"url": "git://github.com/jtheletter/TweetsLineByLine.git"
},
"main": "index.js",
"scripts": {
"check-lines": "node checkLines.js ${WORK}",
"break-long-lines": "node breakLongLines.js ${WORK}",
"break-paragraphs": "node breakParagraphs.js ${WORK}",
"confirm-twitter": "node index.js ${WORK} confirm-twitter",
"get-index": "node index.js ${WORK} get-index",
"set-index": "node index.js ${WORK} set-index",
"zip": "if [[ -f TweetsLineByLine.zip ]]; then rm TweetsLineByLine.zip; fi; zip -r TweetsLineByLine.zip . -x \"**/*.gif\" -x \"**/*.jp*\" -x \"**/*.mov\" -x \"**/*.mp*\" -x \"**/*.png\" -x \"**/.DS_Store\" -x \"**/__*\" -x \"*.git*\" -x \"*.md\" -x \"*.xlsx\" -x \"*.zip\" -x \".DS_Store\" -x \"__*\" -x \"check.js\" -x \"config/**/dev.js\" -x \"images*\"; du -h TweetsLineByLine.zip;",
"deploy": "aws lambda update-function-code --zip-file fileb://TweetsLineByLine.zip --cli-connect-timeout 150 --function-name ${WORK}",
"execute": "node index.js ${WORK} execute",
"psa": "node index.js ${WORK} psa"
},
"dependencies": {
"twit": "^2.2.11",
"@aws-sdk/client-ssm": "^3.20.0"
}
}