-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.18 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": "ucdn",
"version": "0.22.0",
"description": "A µcompress based CDN utility, compatible with both Express and native http module",
"bin": "./server.cjs",
"main": "./cjs/index.js",
"scripts": {
"build": "npm run cjs && npm run test",
"cjs": "ascjs --no-default esm cjs",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"test": "rm -rf test/dest && rm -rf /tmp/ucdn && nyc node test/index.js && rm test/index.test"
},
"keywords": [
"ucompress",
"CDN",
"Express",
"http"
],
"author": "Andrea Giammarchi",
"license": "ISC",
"devDependencies": {
"ascjs": "^5.0.1",
"coveralls": "^3.1.0",
"nyc": "^15.1.0"
},
"module": "./esm/index.js",
"type": "module",
"exports": {
"import": "./esm/index.js",
"default": "./cjs/index.js"
},
"dependencies": {
"essential-md": "^0.3.1",
"id-promise": "^0.3.0",
"ucdn-utils": "^0.5.2",
"ucompress": "^0.22.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WebReflection/ucdn.git"
},
"bugs": {
"url": "https://github.com/WebReflection/ucdn/issues"
},
"homepage": "https://github.com/WebReflection/ucdn#readme"
}