-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
77 lines (77 loc) · 1.65 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "mozaik-ext-slack",
"version": "0.9.0",
"description": "Slack widgets to Mozaik dashboard",
"main": "./components.js",
"scripts": {
"test": "ava"
},
"keywords": [
"slack",
"mozaik",
"dashboard",
"extension"
],
"author": "Juha Mustonen <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/juhamust/mozaik-ext-slack.git"
},
"dependencies": {
"babel-core": "6.7.6",
"babel-preset-es2015": "6.6.0",
"babel-preset-react": "6.5.0",
"babelify": "7.2.0",
"bluebird": "3.3.5",
"chalk": "1.1.3",
"classnames": "^2.2.5",
"convict": "^0.6.1",
"d3": "^4.1.0",
"d3-ease": "^1.0.0",
"dotenv": "^2.0.0",
"emojilib": "^2.0.2",
"hash.js": "^1.1.3",
"lodash": "^3.10.1",
"micromatch": "^3.1.5",
"pretty-print": "^1.0.0",
"react-classset": "0.0.2",
"react-mixin": "3.0.4",
"reflux": "0.4.1",
"slack": "^7.3.0",
"slack-remove-formatting": "^0.1.1",
"superagent": "1.8.3",
"superagent-bluebird-promise": "3.0.0",
"validator": "^3.30.0"
},
"devDependencies": {
"ava": "^0.15.2",
"babel-eslint": "6.0.2",
"babel-register": "6.7.2",
"eslint": "^2.13.0",
"eslint-plugin-react": "^5.2.2",
"jsdom": "^9.2.1",
"proxyquire": "^1.7.9",
"touch": "0.0.3"
},
"peerDependencies": {
"mozaik": ">=1.4.2",
"react": "^0.13.3"
},
"browserify": {
"transform": [
"babelify"
]
},
"ava": {
"files": [
"tests/*.test.js"
],
"tap": false,
"failFast": true,
"require": [
"babel-register"
],
"babel": "inherit"
}
}