forked from rickydunlop/fbmessenger-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.34 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
49
50
51
52
53
54
{
"name": "fbmessenger",
"version": "4.0.0",
"description": "A simple wrapper for Facebook Messenger Bots",
"keywords": [
"Facebook",
"Messenger",
"Bot",
"SendAPI",
"Chatbot",
"es6"
],
"main": "./dist/Messenger.js",
"scripts": {
"build": "babel src --out-dir dist",
"coverage": "cross-env NODE_ENV=test nyc npm test",
"prepublish": "npm run build",
"lint": "eslint src/",
"test": "cross-env NODE_ENV=test jest",
"travis-coveralls": "npm run test && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rickydunlop/fbmessenger-node.git"
},
"contributors": {
"name": "Ricky Dunlop"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rickydunlop/fbmessenger-node/issues"
},
"homepage": "https://github.com/rickydunlop/fbmessenger-node#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.0",
"babel-preset-env": "^1.3.0",
"coveralls": "^2.11.16",
"cross-env": "^4.0.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.0.1",
"jest": "^20.0.0",
"nock": "^9.0.6"
},
"dependencies": {
"node-fetch": "^1.6.3"
},
"jest": {
"collectCoverage": true
}
}