forked from kern/hackbot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.2 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
{
"name": "hackbot",
"version": "0.1.3",
"description": "Hackbot adds moderative features to Facebook Groups through automation.",
"preferGlobal": true,
"bin": "dist/cli.js",
"scripts": {
"start": "babel-node src/cli.js",
"dev": "nodemon --exec babel-node -- src/cli.js",
"build": "babel src --ignore __tests__ --out-dir dist",
"lint": "standard",
"prepublish": "./resources/prepublish.sh"
},
"contributors": [
"Alex Kern <[email protected]>",
"Eva Zheng <[email protected]>",
"JB Rubinovitz <[email protected]>",
"Rodney Folz <[email protected]>"
],
"license": "BSD-3-Clause",
"dependencies": {
"debug": "^2.2.0",
"express": "^4.11.1",
"jsdoc": "^3.3.0-beta2",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"nedb": "^1.2.0",
"qs": "^2.3.3",
"request": "^2.53.0",
"standard": "^5.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/kern/hackbot.git"
},
"engines": {
"node": "5.1.x"
},
"babel": {
"presets": [
"es2015"
]
},
"standard": {
"ignore": [
"dist",
"old"
]
},
"devDependencies": {
"babel-cli": "^6.3.17",
"babel-preset-es2015": "^6.3.13"
}
}