-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 878 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
{
"name": "twilio-caller",
"version": "1.0.0",
"author": "Ryoichi Obara <[email protected]> (http://ryoichi0102.hatenablog.com/)",
"dependencies": {
"npm-check-updates": "^3.1.18",
"twilio": "^3.33.1"
},
"devDependencies": {
"babel-cli": "^6.26.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"
},
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "[email protected]:ryoichi-obara/twilio-caller.git"
},
"scripts": {
"build": "babel src -d build",
"make": "npm i && gulp clean && babel src -d build && gulp install-dependancies && gulp build-zip",
"test": "echo \"Error: no test specified\" && exit 1"
}
}