-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "launch-vehicle-fbm",
"version": "1.10.0",
"description": "An event driven SDK for Facebook Messenger chat bots.",
"main": "src/index.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore --report-unused-disable-directives .",
"pretest": "npm run lint",
"tdd": "NODE_ENV=test env $(cat test.env | xargs) mocha --watch --reporter spec --bail",
"test": "NODE_ENV=test env $(cat test.env | xargs) nyc mocha"
},
"engines": {
"node": ">6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CondeNast/launch-vehicle-fbm.git"
},
"keywords": [
"facebook",
"messenger",
"bot",
"sdk"
],
"author": "Condé Nast Partnerships Team",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CondeNast/launch-vehicle-fbm/issues"
},
"homepage": "https://github.com/CondeNast/launch-vehicle-fbm#readme",
"dependencies": {
"app-root-dir": "^1.0.2",
"body-parser": "^1.18.2",
"cacheman": "^2.2.1",
"config": "^1.30.0",
"dashbot": "^9.9.0",
"debug": "^3.1.0",
"express": "^4.16.3",
"express-handlebars": "^3.0.0",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"url-join": "^4.0.0",
"winston": "^2.4.2",
"winston-slack-transport": "^2.0.0"
},
"devDependencies": {
"@condenast/eslint-config-condenast": "^1.0.0-alpha.7",
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-mocha": "^5.0.0",
"flow-bin": "^0.72.0",
"mocha": "^5.1.1",
"nyc": "^11.7.3",
"sinon": "^5.0.7",
"supertest": "^3.0.0"
}
}