-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.52 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
51
52
53
54
55
56
57
{
"name": "zack-die-ente",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"schema": "cd src && yarn install && cd .. && gulp && node functions/skill/schema.js",
"setup": "cd src && yarn install",
"build": "cd src && yarn install && cd .. && gulp",
"deploy": "cd src && yarn install && cd .. && gulp && AWS_REGION=eu-west-1 apex deploy && AWS_REGION=us-east-1 apex deploy",
"dependency-update": "npm-check -E -u",
"precommit": "lint-staged",
"cz": "git-cz",
"commitmsg": "commitlint -e"
},
"lint-staged": {
"{**/,}*.{ts,tsx}": [
"tslint --fix",
"git add"
],
"{**/,}*.{js,jsx}": [
"eslint --fix",
"git add"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "4.2.1",
"@types/alexa-sdk": "1.0.10",
"@types/request": "2.0.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"del": "3.0.0",
"eslint": "4.9.0",
"gulp": "3.9.1",
"gulp-sequence": "0.4.6",
"gulp-typescript": "3.2.2",
"husky": "0.14.3",
"lint-staged": "4.3.0",
"npm-check": "5.4.5",
"tslint": "5.8.0",
"tslint-eslint-rules": "4.1.1",
"tslint-language-service": "0.9.6",
"typescript": "2.5.3"
},
"author": {
"name": "Benedikt Stemmildt",
"email": "benedikt@stemmildt.com",
"url": "https://github.com/benestem"
},
"license": "Apache-2.0"
}