
Closes #11 Adds a couple of new utterances so you can limit your movie results by the release date. You can now add a movie by saying: > Add The Godfather released in 1972 > Add The Godfather from 1972 > Add The Godfather that came out in 1972 > Add The Godfather released in March 1972 If you've used previous versions of the Intent Schema and Sample Utterances, make sure to copy and paste the new ones in.
28 lines
835 B
JSON
28 lines
835 B
JSON
{
|
|
"name": "alexa-couchpotato",
|
|
"version": "1.1.0",
|
|
"description": "A skill to ask Alexa about your Couch Potato queue.",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"build": "babel src -d dist",
|
|
"zip": "cp -r {.env,deploy.env,package.json} dist/; cd dist; npm install --production; bestzip ../lambda.zip * .env;",
|
|
"bundle": "npm run build; npm run zip;",
|
|
"test-lambda": "npm run build; node-lambda run --handler dist/index.handler"
|
|
},
|
|
"author": "Joe Schmitt",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"alexa-app": "^2.3.2",
|
|
"dotenv": "^2.0.0",
|
|
"node-couchpotato": "^0.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.7.5",
|
|
"babel-core": "^6.7.6",
|
|
"babel-plugin-transform-runtime": "^6.7.5",
|
|
"babel-preset-es2015": "^6.6.0",
|
|
"bestzip": "^1.1.3",
|
|
"node-lambda": "^0.8.11"
|
|
}
|
|
}
|