-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
37 lines (37 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "alexa-couchpotato",
"version": "1.3.1",
"description": "A skill to ask Alexa about your Couch Potato queue.",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"deploy": "npm run prepare; node-lambda deploy",
"gen-interaction": "node scripts/gen-interaction.js",
"package": "npm run prepare; node-lambda package --packageDirectory=./",
"prepare": "npm run build; npm run gen-interaction; npm run upgrade-config",
"prepublishOnly": "npm run package",
"start": "npm run prepare; node-lambda run",
"upgrade-config": "node ./scripts/upgrade-config.js"
},
"author": "Joe Schmitt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/josephschmitt/alexa-couchpotato.git"
},
"dependencies": {
"alexa-app": "^4.0.1",
"config": "^1.26.1",
"couchpotato-api": "^0.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-root-import": "^5.1.0",
"babel-preset-env": "^1.5.1",
"dotenv": "^2.0.0",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.3.0",
"fs-extra": "^3.0.1",
"node-lambda": "^0.8.15"
}
}