-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 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
{
"name": "@alkem/gitbot",
"version": "1.0.2",
"description": "Greatest buddy ever",
"main": "dist/index.js",
"scripts": {
"compile": "./node_modules/.bin/babel src --out-dir dist --presets es2015,stage-3",
"dev": "nodemon src/index.js --exec babel-node --presets es2015,stage-3",
"lint": "./node_modules/.bin/eslint ./src/**/*.js",
"mocha": "BABEL_ENV=test NODE_PATH=\"$PWD:$PWD/src\" mocha --opts mocha.opts",
"prepublish": "npm run compile",
"start": "nodemon src/index.js --exec babel-node --presets es2015,stage-3",
"test": "npm run lint && npm run mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/adlenafane/gitbot.git"
},
"author": "Adlen Afane <adlen.afane@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/adlenafane/gitbot/issues"
},
"homepage": "https://github.com/adlenafane/gitbot#readme",
"dependencies": {
"body-parser": "1.14.2",
"botkit": "~0.0.4",
"express": "4.13.3",
"redis": "2.4.2"
},
"devDependencies": {
"babel-cli": "~6.3.17",
"babel-eslint": "^4.1.6",
"babel-preset-es2015": "~6.3.13",
"babel-preset-stage-3": "~6.3.13",
"chai": "~3.5.0",
"dirty-chai": "~1.2.2",
"dotenv": "~2.0.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "3.13.0",
"mocha": "~3.1.2",
"nodemon": "~1.8.1",
"path": "~0.12.7",
"sinon": "~1.17.6",
"sinon-chai": "~2.8.0"
}
}