This repository has been archived by the owner on Sep 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.77 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
{
"name": "chatfuel-api",
"version": "2.1.0",
"description": "A library to simplify sending messages and broadcasts to a Chatfuel bot over Facebook Messenger",
"main": "lib/index.js",
"author": "Eric Mathison <[email protected]>",
"homepage": "https://github.com/eric-mathison/chatfuel-api#readme",
"repository": {
"type": "git",
"url": "https://github.com/eric-mathison/chatfuel-api"
},
"license": "MIT",
"private": false,
"scripts": {
"start": "node lib/index.js",
"build": "babel src -d lib",
"babeldev": "babel src -w -d lib",
"prepublish": "npm run lint && npm run test && npm run build",
"lint": "eslint src test",
"test": "mocha"
},
"keywords": [
"chatfuel",
"chatbot",
"node",
"api",
"broadcast",
"facebook",
"messenger"
],
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-mocha": "^5.1.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^1.0.0-rc.13",
"lint-staged": "^7.2.0",
"mocha": "^9.0.1",
"prettier": "^1.14.2",
"sinon": "^6.1.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint && lint-staged",
"pre-push": "npm run test"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}