Alexa-Couchpotato/package.json

28 lines
835 B
JSON
Raw Permalink Normal View History

2016-03-27 14:35:30 -04:00
{
"name": "alexa-couchpotato",
"version": "1.1.1",
2016-03-27 14:35:30 -04:00
"description": "A skill to ask Alexa about your Couch Potato queue.",
"main": "src/index.js",
2016-03-27 14:35:30 -04:00
"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"
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": {
"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",
"node-lambda": "^0.8.11"
2016-03-27 14:35:30 -04:00
}
}