-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.66 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
{
"name": "alexa-smart-home-skill-template",
"version": "0.0.1",
"description": "Alexa Smart Home Skill Template",
"main": "index.js",
"scripts": {
"generateInterfaces": "json2ts ./schema/alexa_smart_home_message_schema.json > typings/AlexaSmartHomeAPI.ts --style.singleQuote --no-style.semi",
"generateMessages": "json-ts $FILE_PATH --prefix '' --rootName $FILE_NAME | tee $OUTPUT_FILE_NAME",
"getSchema": "curl https://raw.githubusercontent.com/alexa/alexa-smarthome/master/validation_schemas/alexa_smart_home_message_schema.json -o ./schema/alexa_smart_home_message_schema.json",
"build": "rm -f archive.zip && tsc && zip -r -X archive.zip ./src ./package.json ./index.js ./node_modules",
"tslint-fix": "tslint --fix --project .",
"tslint": "tslint --project ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/sskorol/alexa-smart-home-skill-template.git"
},
"keywords": [
"alexa",
"smart home"
],
"author": "Sergey Korol",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sskorol/alexa-smart-home-skill-template/issues"
},
"homepage": "https://github.com/sskorol/alexa-smart-home-skill-template#readme",
"devDependencies": {
"json-schema-to-typescript": "^6.1.3",
"json-ts": "^1.6.4",
"prettier": "^1.17.0",
"source-map-support": "^0.5.12",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.4.5",
"uuid": "^3.3.2"
},
"dependencies": {
"axios": "^0.21.2",
"dotenv": "^7.0.0",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35"
}
}