Alexa-Couchpotato/package.json
Joseph J. Schmitt 8eeb0ae515 Standardize searching for movies with optional release date (#17)
* Don’t filter locally for year
* Add new utterance for searching by year
* Standardize release date query building
* Update README with new utterances
* Version bump to 1.1.1
2016-10-30 13:03:20 -04:00

28 lines
835 B
JSON

{
"name": "alexa-couchpotato",
"version": "1.1.1",
"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"
}
}