2016-03-27 14:35:30 -04:00
|
|
|
{
|
|
|
|
"name": "alexa-couchpotato",
|
2016-10-29 22:40:43 -04:00
|
|
|
"version": "1.1.0",
|
2016-03-27 14:35:30 -04:00
|
|
|
"description": "A skill to ask Alexa about your Couch Potato queue.",
|
2016-10-29 22:04:44 -04:00
|
|
|
"main": "src/index.js",
|
2016-03-27 14:35:30 -04:00
|
|
|
"scripts": {
|
2016-10-29 22:04:44 -04:00
|
|
|
"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"
|
2016-03-27 14:35:30 -04:00
|
|
|
},
|
|
|
|
"author": "Joe Schmitt",
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
|
|
|
"alexa-app": "^2.3.2",
|
|
|
|
"dotenv": "^2.0.0",
|
2016-03-27 16:25:09 -04:00
|
|
|
"node-couchpotato": "^0.1.4"
|
2016-03-27 14:35:30 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-10-29 22:04:44 -04:00
|
|
|
"babel-cli": "^6.7.5",
|
|
|
|
"babel-core": "^6.7.6",
|
|
|
|
"babel-plugin-transform-runtime": "^6.7.5",
|
|
|
|
"babel-preset-es2015": "^6.6.0",
|
2016-03-27 14:35:30 -04:00
|
|
|
"bestzip": "^1.1.3",
|
2016-10-29 22:04:44 -04:00
|
|
|
"node-lambda": "^0.8.11"
|
2016-03-27 14:35:30 -04:00
|
|
|
}
|
|
|
|
}
|