-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
34 lines (34 loc) · 905 Bytes
/
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
{
"name": "cache-parser",
"version": "1.2.5",
"description": "A minimal parser for the Cache-Control header.",
"homepage": "https://tinylibs.js.org/packages/cache-parser",
"bugs": "https://github.com/arthurfiorette/tinylibs/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/arthurfiorette/tinylibs.git",
"directory": "packages/cache-parser"
},
"license": "MIT",
"author": "Arthur Fiorette <[email protected]>",
"sideEffects": false,
"main": "dist/index.js",
"umd:main": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"module": "dist/index.mjs",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md"
],
"scripts": {
"build": "microbundle --tsconfig tsconfig.build.json",
"test": "jest --coverage"
},
"devDependencies": {
"microbundle": "0.15.1"
}
}