-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "messenger-node",
"version": "0.3.2",
"description": "An SDK for the Messenger Platform",
"main": "lib/index.js",
"author": "Alex Muramoto",
"license": "MIT",
"bugs": {
"url": "https://github.com/amuramoto/messenger-node/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/amuramoto/messenger-node.git"
},
"dependencies": {
"express": "^4.16.2",
"request": "^2.83.0"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"eslint": "^4.1.1",
"eslint-config-google": "^0.9.1",
"jest": "^22.0.5",
"uglify-es": "^3.3.7"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"client/**",
"webhook/**"
],
"testURL": "http://localhost"
},
"keywords": [
"facebook",
"messenger",
"sdk",
"webhook",
"messenger platform",
"bot",
"chatbot",
"messenger bot",
"graph api"
],
"scripts": {
"prepublish": "npm run docs && npm run lint",
"docs": "rm README.md && for x in docs/overview.md docs/webhook.md docs/client.md; do cat $x >> README.md; echo \"\n\n\" >> README.md; done && echo \"## Reference\" >> README.md && documentation build lib/** -f md >> README.md",
"lint": "eslint client/** webhook/** tests/**",
"test": "jest",
"uglify": "uglifyjs lib/client/index.js lib/client/**/*.js lib/webhook/*.js -c -m --toplevel -o bundle.min.js"
}
}