forked from rickydunlop/fbmessenger-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "fbmessenger",
"version": "5.0.2",
"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",
"commitmsg": "commitlint -e $GIT_PARAMS",
"postinstall": "npm run build",
"coverage": "cross-env NODE_ENV=test nyc npm test",
"prepublish": "npm run build",
"lint": "eslint src/",
"release": "standard-version",
"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.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.0.1",
"babel-preset-env": "^1.7.0",
"coveralls": "^3.0.1",
"cross-env": "^5.2.0",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"nock": "^10.0.0"
},
"dependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-angular": "^7.0.1",
"node-fetch": "^2.1.2"
},
"jest": {
"collectCoverage": true
}
}