-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 895 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 895 Bytes
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
{
"name": "codingjam-alexa-skill",
"version": "0.0.1",
"description": "La skill Alexa ufficiale di CodingJam",
"author": "Francesco Strazzullo (francesco.strazzullo86@gmail.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/coding-jam/alexa-skill.git"
},
"bugs": {
"url": "https://github.com/coding-jam/alexa-skill/issues"
},
"homepage": "https://github.com/coding-jam/alexa-skill#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"scripts": {
"predeploy": "cd lambda/custom && npm i",
"deploy": "ask deploy"
},
"devDependencies": {
"ask-cli": "1.4.9",
"ask-sdk-core": "2.0.0",
"ask-sdk-model": "1.0.0",
"husky": "1.3.1",
"lint-staged": "8.1.0",
"standard": "12.0.1"
}
}