-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
45 lines (45 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
42
43
44
45
{
"name": "jsdelivr-auto-fallback",
"version": "0.2.4",
"description": "修复 cdn.jsdelivr.net 无法访问的问题",
"main": "index.js",
"scripts": {
"build": "uglifyjs index.js -c -m -o index.min.js",
"lint": "prettier --write . && xo",
"lint:fix": "prettier --write . && xo --fix",
"test": "echo \"Error: no test specified\" && exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PipecraftNet/jsdelivr-auto-fallback.git"
},
"files": [
"index.js",
"index.min.js",
"LICENSE",
"README.md"
],
"keywords": [
"jsdelivr"
],
"author": "Pipecraft <[email protected]> (https://www.pipecraft.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/PipecraftNet/jsdelivr-auto-fallback/issues"
},
"homepage": "https://github.com/PipecraftNet/jsdelivr-auto-fallback#readme",
"devDependencies": {
"prettier": "^2.6.2",
"uglify-js": "^3.15.5",
"xo": "^0.49.0"
},
"xo": {
"space": 2,
"prettier": true,
"rules": {
"capitalized-comments": 0,
"unicorn/prefer-module": 0,
"no-undef": 0
}
}
}