-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1022 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "your-skill-name",
"description": "Boilerplate for Alexa Skills.",
"version": "1.0.0",
"author": "Ryoichi Obara <npmjs0102@gmail.com> (http://ryoichi0102.hatenablog.com/)",
"dependencies": {
"ask-sdk-core": "^2.6.0",
"ask-sdk-model": "1.18.0"
},
"devDependencies": {
"aws-sdk": "^2.493.0",
"babel-cli": "6.26.0",
"babel-preset-env": "^1.7.0",
"dotenv": "^8.0.0",
"eslint": "^6.0.1",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-install": "^1.1.0",
"gulp-zip": "^5.0.0"
},
"keywords": [
"AWS",
"Alexa",
"Node",
"Node.js",
"Skills"
],
"license": "MIT",
"main": "Build/Release/index.js",
"scripts": {
"build": "npm i && gulp clean && babel src -d build/Release && gulp install-dependancies",
"make": "npm run build && gulp build-zip",
"quick": "babel src -d build/Release && gulp build-zip",
"test": "node handle.js"
}
}