-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "botimize-botkit-middleware",
"version": "0.1.8",
"description": "Middleware for using botimize with Botkit-powered bots",
"directories": {
"lib": "./lib"
},
"keywords": [
"botimize",
"botkit",
"middleware"
],
"author": "Botimize, Inc. <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/botimize/botimize-botkit-middleware.git"
},
"scripts": {
"lint": "npm run lint:src && npm run lint:examples",
"lint:examples": "eslint examples",
"lint:src": "eslint src",
"build": "babel src -d lib",
"prepare": "npm run build",
"prepublish": "npm run build"
},
"main": "lib/botimize-botkit-middleware.js",
"dependencies": {
"botimize": "^1.0.2"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.13.2",
"botkit": "^0.2.2",
"command-line-args": "^3.0.1",
"eslint": "^3.5.0",
"eslint-config-standard": "^6.0.0",
"eslint-plugin-promise": "^2.0.1",
"eslint-plugin-standard": "^2.0.0",
"localtunnel": "^1.8.1"
}
}