-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "esbuild-plugin-cache",
"version": "0.2.10",
"description": "Esbuid plugin to use cache for http/https",
"main": "index.cjs",
"module": "index.js",
"type": "module",
"typings": "index.d.ts",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"test": "node test.js",
"build": "esbuild index.ts > index.js",
"cjs": "esbuild --format=cjs index.ts > index.cjs",
"types": "tsc ./index.ts --declaration --emitDeclarationOnly --out index.js --module amd --target es2015",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dalcib/esbuild-plugin-deno-cache.git"
},
"keywords": [
"esbuild",
"deno",
"cache"
],
"author": "Dalci de Jesus Bagolin <[email protected]> (https://github.org/dalcib)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dalcib/esbuild-plugin-cache/issues"
},
"homepage": "https://github.com/dalcib/esbuild-plugin-cache#readme",
"dependencies": {
"deno-cache": "^0.2.12",
"deno-importmap": "^0.1.6"
},
"devDependencies": {
"esbuild": "^0.11.10"
}
}