-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.15 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
{
"name": "mobile-mobot",
"version": "3.2.2",
"description": "Mobile automation bot",
"private": true,
"main": "lib/index.js",
"scripts": {
"lint": "eslint ./src",
"clean": "rm -rf ./lib",
"build": "npm run clean && babel src --out-dir lib --source-maps inline --copy-files --ignore spec.js",
"build:test": "npm run clean && babel test --out-dir lib/test --source-maps inline --copy-files && babel src --out-dir lib/src --source-maps inline --copy-files",
"build:watch": "npm run build -- --watch",
"start": "node ./lib/index.js | bunyan --color",
"start:watch": "sleep 5s && nodemon --watch ./lib --delay 100ms ./lib/index.js | bunyan --color",
"dev": "DEBUG_COLORS=1 concurrently --kill-others --prefix=\"[{name}]\" --names=\"babel,nodemon\" \"npm run build:watch\" \"npm run start:watch\"",
"test": "mocha tests/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BanditSoftware/mobile-mobot.git"
},
"keywords": [
"mobot",
"chatops",
"bot",
"leankit",
"mobile"
],
"author": "Mobile Squad",
"license": "MIT",
"bugs": {
"url": "https://github.com/BanditSoftware/mobile-mobot/issues"
},
"homepage": "https://github.com/BanditSoftware/mobile-mobot#readme",
"dependencies": {
"aupair": "^1.1.1",
"aupair-api": "^1.0.0",
"beepboop-persist": "^1.0.0",
"bunyan": "^1.8.10",
"es6-promisify": "^5.0.0",
"express": "^4.15.3",
"humanize-duration": "^3.10.0",
"meld": "^1.3.2",
"octokat": "^0.9.0",
"semver": "^5.3.0",
"shortid": "^2.2.8",
"slapp": "^2.4.1",
"slapp-context-beepboop": "^1.4.0",
"slapp-convo-beepboop": "^1.0.1",
"yargs-parser": "^5.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-node6": "^11.0.0",
"babel-preset-stage-0": "^6.24.1",
"concurrently": "^3.4.0",
"eslint": "^3.19.0",
"eslint-config-leankit": "^3.0.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0"
}
}