-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
59 lines (59 loc) · 1.28 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
{
"name": "freecdn",
"version": "0.3.1",
"author": "EtherDream",
"license": "MIT",
"description": "A tool that can reduce website bandwidth costs",
"keywords": [
"CDN",
"web",
"javascript",
"serviceworker"
],
"homepage": "https://github.com/EtherDream/freecdn",
"repository": {
"type": "git",
"url": "https://github.com/EtherDream/freecdn"
},
"bugs": {
"url": "https://github.com/EtherDream/freecdn/issues"
},
"engines": {
"node": ">=15"
},
"bin": {
"freecdn": "bin/freecdn"
},
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"dependencies": {
"colors": "^1.4.0",
"commander": "^9.0.0",
"freecdn-js": "^0.4.0",
"freecdn-publib": "^0.1.2",
"glob": "^7.1.7",
"node-fetch": "^2.6.1",
"sqlite3": "^5.0.2"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "^17.0.31",
"@types/node-fetch": "^2.6.1",
"@types/sqlite3": "^3.1.8",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"chai": "^4.3.6",
"express": "^4.18.1",
"mocha": "^10.0.0",
"typescript": "^4.6.4"
},
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "mocha --exit --timeout 5000",
"lint": "eslint . --ext .ts"
}
}