-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
77 lines (77 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "fbbot",
"version": "1.1.1",
"description": "Minimal framework/SDK for facebook messenger bots. BYOS (Bring Your Own Server)",
"main": "index.js",
"scripts": {
"lint": "eslint *.js */*.js",
"pretest": "is-node-not-modern && npm install hapi@9 || is-node-modern",
"test": "tape test/test-*.js | tap-spec",
"precover": "rimraf coverage",
"cover": "istanbul cover tape -- test/test-*.js | tap-spec",
"preci-test": "is-node-not-modern && npm install hapi@9 || is-node-modern",
"ci-test": "npm run cover",
"ci-lint": "is-node-modern && npm run lint || is-node-not-modern",
"toc": "toc-md README.md",
"get-version": "node -e \"console.log(require('./package.json').version)\"",
"update-readme": "sed -i.bak 's/\\/master\\.svg/\\/v'$(npm --silent run get-version)'.svg/g' README.md",
"restore-readme": "mv README.md.bak README.md",
"prepublish": "in-publish && npm run update-readme || not-in-publish",
"postpublish": "npm run restore-readme"
},
"pre-commit": [
"lint",
"test",
"toc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alexindigo/fbbot.git"
},
"keywords": [
"bot",
"facebook",
"messenger",
"fb",
"fbbot",
"api",
"hook",
"webhook",
"sdk",
"byos"
],
"author": "Alex Indigo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexindigo/fbbot/issues"
},
"homepage": "https://github.com/alexindigo/fbbot#readme",
"devDependencies": {
"coveralls": "^2.11.14",
"eslint": "^3.6.1",
"express": "^4.14.0",
"glob": "^7.1.0",
"hapi": "^15.1.0",
"in-publish": "^2.0.0",
"is-node-modern": "^1.0.0",
"istanbul": "^0.4.5",
"pre-commit": "^1.1.3",
"restify": "^4.1.1",
"rimraf": "^2.5.4",
"tap-spec": "^4.1.1",
"tape": "^4.6.0",
"toc-md": "^0.2.0"
},
"dependencies": {
"agnostic": "^1.2.2",
"array-find": "^1.0.0",
"async-cache": "^1.1.0",
"asynckit": "^0.4.0",
"bole": "^3.0.1",
"deeply": "^2.0.3",
"hyperquest": "^2.1.0",
"once": "^1.4.0",
"precise-typeof": "^1.0.2",
"to-camel-case": "^1.0.0"
}
}