-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 876 Bytes
/
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
{
"name": "bannerbear",
"version": "1.4.0",
"description": "Bannerbear API Wrapper",
"main": "lib/bannerbear.js",
"types": "lib/bannerbear.d.ts",
"scripts": {
"build": "tsc"
},
"author": "Jon Yongfook <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yongfook/bannerbear-node.git"
},
"bugs": "https://github.com/yongfook/bannerbear-node/issues",
"engines": {
"node": ">=12.*"
},
"dependencies": {
"@types/node": ">=12.0.0",
"base64url": "^3.0.1",
"node-fetch": "^2.6.6"
},
"devDependencies": {
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"typescript": "^4.5.2"
}
}