-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "@8ctopotamus/bunnycdn",
"version": "0.0.2",
"description": "A NodeJS SDK for Bunny.Net CDN.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"type": "module",
"files": [
"lib"
],
"scripts": {
"dev": "npx tsc --watch",
"prepublish": "npx tsc",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/8ctopotamus/bunnynet-node.git"
},
"keywords": [
"bunny.net",
"bunnynet",
"bunnycdn",
"bunny",
"cdn",
"node",
"sdk"
],
"author": "@8ctopotamus",
"license": "ISC",
"bugs": {
"url": "https://github.com/8ctopotamus/bunnynet-node/issues"
},
"homepage": "https://github.com/8ctopotamus/bunnynet-node#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"mime-types": "^2.1.35",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"typescript": "^4.9.3"
}
}