forked from Parcley/alexa-wikiquote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1012 Bytes
/
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": "skill-alexa-nodejs-quote",
"version": "1.0.0",
"description": "An unofficial wikiquote skill",
"main": "index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jasmine",
"zip": "npm prune --production && bestzip quote-skill.zip lib/* node_modules && npm install",
"upload": "s3-cli --config ./aws.config --region eu-west-1 put quote-skill.zip s3://perzl-alexa/quote-skill.zip",
"deploy": "npm run build && npm run zip && npm run upload"
},
"keywords": [
"alexa",
"skill",
"quote",
"wikiquote"
],
"author": "Martin Perzl",
"license": "Apache-2.0",
"dependencies": {
"@akanass/rx-http-request": "^2.6.0",
"alexa-sdk": "^1.0.15",
"bestzip": "^1.1.4",
"cheerio": "^1.0.0-rc.2",
"rxjs": "^5.5.0"
},
"devDependencies": {
"@types/alexa-sdk": "^1.0.10",
"@types/cheerio": "^0.22.3",
"@types/jasmine": "^2.6.0",
"jasmine": "^2.8.0",
"s3-cli": "^0.13.0",
"typescript": "^2.5.3"
}
}