-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
22 lines (22 loc) · 970 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
{
"scripts": {
"test": "echo \"Please use vscode and press F5 to start Unit Tests and debug them\" && exit 1",
"eslint": "eslint ./lambda/custom --fix",
"eslint:json": "eslint -f json -o eslint-report.json ./lambda/custom",
"create-table": "node ./dynamodb-create-sample-table.js",
"sonar": "sonar-scanner",
"sonar-eslint": "npm run eslint:json || npm run sonar",
"unit-test": "node ./node_modules/bespoken-tools/bin/bst-test.js ./test/unit/*",
"e2e-test": "echo \"Don't forget to paste your access token in 'testing.json'.\" && node ./node_modules/bespoken-tools/bin/bst-test.js ./test/e2e/* --type=e2e"
},
"author": "Javier Campos",
"homepage": "https://github.com/javichur/Alexa-Skill-Test-Autoescuela/",
"license": "Apache",
"devDependencies": {
"bespoken-tools": "^2.3.26",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"sonar-scanner": "^3.1.0"
}
}