-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 908 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
{
"name": "botbuilder-slack-extension",
"version": "1.1.1",
"description": "Slack extension for Microsoft BotBuilder",
"main": "lib/index.js",
"repository": "https://github.com/suttna/botbuilder-slack-extension",
"author": "Martin Fernandez <[email protected]>",
"license": "MIT",
"scripts": {
"build": "babel --source-maps -d lib/ src/",
"ci": "yarn lint",
"lint": "standard 'lib/**.js'",
"lint:fix": "standard 'src/**.js' --fix",
"postinstall": "postinstall-build lib",
"prepublish": "yarn build"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "6.1.21",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.14.0",
"standard": "^10.0.2"
},
"dependencies": {
"postinstall-build": "^5.0.1"
},
"keywords": [
"bot",
"node",
"botframework",
"botbuilder",
"slack"
]
}