-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.12 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
{
"name": "chatfuel-broadcast",
"version": "3.1.0",
"description": "Wrapper for Chatfuel broadcast API",
"main": "lib/broadcast.js",
"repository": "[email protected]:MarcL/chatfuel-broadcast.git",
"author": "Marc Littlemore <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "babel src -d lib",
"lint": "eslint src test",
"prepublish": "yarn lint && yarn test && yarn build",
"test": "jest"
},
"dependencies": {
"axios": "^0.21.1",
"axios-rate-limit": "^1.2.1",
"is-hex": "^1.1.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.1",
"eslint-plugin-jest": "^23.8.2",
"husky": "^4.2.3",
"jest": "^25.1.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"engines": {
"node": ">=10.0.0"
}
}