Skip to content

Commit

Permalink
Update version to 2.1.0, adapt scripts to refactored directory structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Gründel committed Feb 21, 2018
1 parent 620a9a6 commit 45edcbb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"name": "awesome-quotations",
"version": "2.0.1",
"version": "2.1.0",
"description": "Alexa Skill for awesome quotations",
"repository": {
"type": "git",
"url": "https://github.com/sgruendel/alexa-awesome-quotations.git"
},
"main": "index.js",
"scripts": {
"invoke": "aws lambda invoke --function-name 'awesomeQuotations' --payload fileb://../tests/events/alexa-start-session.json ../tests/out.txt && cat ../tests/out.txt",
"invoke": "aws lambda invoke --function-name 'awesomeQuotations' --payload fileb://tests/events/alexa-start-session.json tests/out.txt && cat tests/out.txt",
"test": "mocha --recursive",
"deploy": "npm prune --production && npm run zip && npm run upload",
"upload": "aws lambda update-function-code --function-name 'awesomeQuotations' --zip-file fileb://../index.zip",
"zip": "zip -r ../index.zip . -x 'package.json' 'test/*' '*.git*' '*~'"
"deploy": "npm run zip && npm run upload",
"upload": "aws lambda update-function-code --function-name 'awesomeQuotations' --zip-file fileb://index.zip",
"zip": "npm prune --production && zip -r index.zip node_modules && cd src && zip ../index.zip *"
},
"author": "Stefan Gründel",
"license": "GPL-3.0",
Expand Down

0 comments on commit 45edcbb

Please sign in to comment.