-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1 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
{
"name": "is-it-snowing-in-pdx",
"version": "1.0.0-beta.1",
"description": "An Alexa Skill for telling you if it is currently snowing in Portland.",
"main": "index.js",
"dependencies": {
"alexa-sdk": "^1.0.13",
"node-fetch": "^1.7.3"
},
"devDependencies": {
"@types/alexa-sdk": "^1.0.10",
"@types/node": "^8.0.28",
"@types/node-fetch": "^1.6.7",
"tslint": "^5.7.0",
"tslint-config-airbnb": "^5.2.1",
"typescript": "^2.5.2"
},
"scripts": {
"test": "tslint -c tslint.json 'src/**/*.ts'",
"build": "yarn install --production --frozen-lockfile --modules-folder=dist/node_modules && tsc && cd dist && zip -r lamda_assets.zip ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasHill/is-it-snowing-in-pdx-skill.git"
},
"author": "Lucas Hill",
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasHill/is-it-snowing-in-pdx-skill/issues"
},
"homepage": "https://github.com/LucasHill/is-it-snowing-in-pdx-skill#readme"
}