forked from mattermost/mattermost-driver-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.26 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
45
46
47
48
49
50
51
{
"name": "mattermost",
"version": "3.4.0",
"description": "Javascript library for interacting with the Mattermost API",
"main": "lib/client.js",
"files": [
"client.jsx",
"websocket_client.jsx",
"README.md",
"Makefile",
"lib",
"lib/client.js",
"lib/client.js.map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mattermost/mattermost-javascript.git"
},
"keywords": [
"mattermost",
"webhook",
"integration"
],
"author": "Mattermost",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mattermost/platform/issues"
},
"homepage": "https://www.mattermost.org/",
"dependencies": {
"superagent": "1.8.3"
},
"devDependencies": {
"babel-loader": "6.2.4",
"babel-plugin-transform-runtime": "6.8.0",
"babel-polyfill": "6.8.0",
"babel-preset-es2015-webpack": "6.4.1",
"babel-preset-stage-0": "6.5.0",
"mocha": "2.4.5",
"mocha-jsdom": "1.1.0",
"mocha-webpack": "0.3.0",
"jquery-deferred": "0.3.0",
"webpack": "2.1.0-beta.7",
"webpack-node-externals": "1.2.0"
},
"scripts": {
"build": "webpack",
"prepublish": "webpack",
"test": "mocha-webpack --webpack-config webpack.config.js \"**/*.test.jsx\""
}
}