This repository has been archived by the owner on May 10, 2022. It is now read-only.
forked from rauchg/slackin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.51 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
{
"name": "slackin",
"version": "0.14.0",
"description": "Public Slack organizations made easy",
"repository": "rauchg/slackin",
"main": "dist/index",
"files": [
"dist",
"bin"
],
"babel": {
"presets": [
"es2015"
]
},
"dependencies": {
"args": "1.3.1",
"babel-core": "6.26.3",
"babel-eslint": "6.1.2",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"body-parser": "^1.19.0",
"cors": "2.8.5",
"debug": "3.2.6",
"email-regex": "1.0.0",
"express": "4.16.4",
"gulp": "4.0.0",
"gulp-babel": "6.1.3",
"gulp-rimraf": "0.2.2",
"hostenv": "1.0.6",
"opentype.js": "0.4.11",
"socket.io": "2.1.1",
"superagent": "3.8.3",
"vd": "0.1.0"
},
"license": "MIT",
"devDependencies": {
"eslint": "2.13.1",
"eslint-config-default": "^0.2.0",
"mocha": "2.5.3",
"nock": "2.18.2",
"supertest": "0.15.0"
},
"engines": {
"node": ">6.11.1"
},
"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"
}
}