forked from hull-ships/hull-slack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.24 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.24 KB
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
78
79
80
{
"name": "hull-slack",
"description": "Send Notification of User events and segments to Slack",
"version": "0.0.2",
"homepage": "https://github.com/hull-ships/hull-slack",
"license": "MIT",
"main": "bin/start",
"author": {
"name": "Hull",
"email": "contact@hull.io",
"url": "https://github.com/hull"
},
"engines": {
"node": "6.x",
"npm": "3.x"
},
"repository": {
"type": "git",
"url": "git://github.com/hull-ships/hull-slack"
},
"bugs": {
"url": "https://github.com/hull-ships/hull-slack/issues"
},
"scripts": {
"build": "npm run clean && npm run build:server",
"build:server": "./node_modules/.bin/babel server -d lib",
"start": "node ./lib",
"start:dev": "NODE_ENV=development ./node_modules/.bin/nodemon -V -w server -x ./node_modules/.bin/babel-node -- server",
"test": "npm run test:lint && npm run test:modules",
"test:lint": "./node_modules/.bin/eslint server",
"test:modules": "npm outdated --depth=0",
"clean": "./node_modules/.bin/rimraf dist; ./node_modules/.bin/rimraf lib",
"update": "./node_modules/.bin/updtr",
"watch": "./node_modules/.bin/watch 'clear && npm run test:lint -s && npm run test:units -s' server src",
"postinstall": "npm run build"
},
"keywords": [
"hull",
"ship",
"hull-ship",
"webhooks",
"integration",
"user",
"sync",
"slack"
],
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-jest": "^18.0.0",
"eslint": "^3.13.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0",
"updtr": "^0.2.3",
"watch": "^1.0.1"
},
"dependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"body-parser": "^1.15.2",
"botkit": "^0.4.9",
"bson-objectid": "^1.1.4",
"dotenv": "^4.0.0",
"ejs": "^2.5.5",
"express": "^4.14.0",
"hull": "0.10.5",
"jwt-simple": "^0.5.1",
"lodash": "^4.17.4",
"minimist": "^1.2.0",
"moment": "^2.17.1",
"node-slack": "0.0.7",
"passport": "^0.3.2",
"passport-slack": "0.0.7",
"rimraf": "^2.5.4",
"winston-logstash": "^0.3.0"
}
}