forked from josephschmitt/alexa-libby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.6 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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "alexa-libby",
"version": "1.2.0",
"description": "A skill to ask Alexa about your Movie and TV Show library queues.",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist/ && babel src -d dist",
"deploy": "npm run prepare; node-lambda deploy",
"gen-interaction": "node scripts/gen-interaction.js",
"lint": "eslint src/** test/**",
"package": "npm run prepare; node-lambda package --packageDirectory=./",
"prepare": "npm run build; npm run gen-interaction",
"prepublish": "./scripts/post-install.js",
"prepublishOnly": "npm run package",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov",
"start": "npm run prepare; node-lambda run",
"test": "nyc mocha --recursive --compilers js:babel-core/register && npm run lint && npm run report-coverage"
},
"author": "Joe Schmitt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/josephschmitt/alexa-libby.git"
},
"dependencies": {
"alexa-app": "^4.0.1",
"config": "^1.26.1",
"couchpotato-api": "^0.1.0",
"node-sickbeard": "0.0.1",
"sonarr-api": "^0.2.0",
"themoviedbclient": "^0.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"alexa-utterances": "^0.2.1",
"babel-cli": "^6.24.1",
"babel-plugin-root-import": "^5.1.0",
"babel-preset-env": "^1.5.1",
"deepmerge": "^1.4.4",
"dotenv": "^4.0.0",
"eslint": "^3.19.0",
"eslint-plugin-import": "^2.3.0",
"fs-extra": "^3.0.1",
"mocha": "^3.4.2",
"node-lambda": "^0.11.0",
"nyc": "^11.0.2",
"rimraf": "^2.6.1",
"sinon": "^2.3.2"
}
}