forked from rauchg/slackin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.39 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
{
"name": "slackin",
"version": "0.13.1",
"description": "Public Slack organizations made easy",
"repository": "rauchg/slackin",
"main": "dist/index",
"files": [
"dist",
"bin"
],
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"args": "1.3.0",
"babel-core": "6.3.26",
"babel-eslint": "6.0.4",
"babel-polyfill": "6.3.14",
"babel-preset-es2015": "6.3.13",
"babel-register": "6.9.0",
"body-parser": "1.10.2",
"cors": "2.7.1",
"debug": "2.1.1",
"email-regex": "1.0.0",
"express": "4.11.0",
"gulp-babel": "6.1.1",
"gulp-rimraf": "0.2.0",
"gulp": "3.9.0",
"hostenv": "1.0.1",
"opentype.js": "0.4.4",
"socket.io": "1.4.8",
"superagent": "0.21.0",
"vd": "0.1.0"
},
"license": "MIT",
"devDependencies": {
"eslint": "2.12.0",
"eslint-config-default": "0.2.0",
"mocha": "2.2.4",
"nock": "2.17.0",
"supertest": "0.15.0"
},
"engines": {
"node": "4.5.0"
},
"bin": {
"slackin": "./bin/slackin"
},
"eslintConfig": {
"extends": "default",
"parser": "babel-eslint",
"rules": {
"no-var": 0
}
},
"scripts": {
"test": "mocha && eslint lib/**",
"postinstall": "gulp",
"build": "gulp",
"start": "chmod +x bin/slackin && ./bin/slackin"
},
"now": {
"files": [
"bin",
"lib",
"gulpfile.babel.js"
]
}
}