-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 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": "parsehttpdate",
"description": "Parses the value of the Date header in HTTP responses",
"version": "1.0.12",
"main": "compiled/cjs/parsehttpdate.min.js",
"module": "compiled/esm/parsehttpdate.min.js",
"unpkg": "compiled/iife/parsehttpdate.min.js",
"types": "index.d.ts",
"files": [
"index.js",
"compiled",
"index.d.ts",
"copying.txt",
"readme-nl.md"
],
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"babel-preset-minify": "^0.5.2",
"jest": "^29.7.0",
"rollup": "^4.21.2",
"typescript": "^5.5.4"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"test": "npm run-script build && jest && tsc --strict --noEmit test/type-test.ts",
"coverage": "npm run-script build && jest --coverage"
},
"author": {
"name": "Pimm \"de Chinchilla\" Hogeling",
"url": "https://null.house"
},
"repository": {
"type": "git",
"url": "https://github.com/Pimm/parseHttpDate.git"
},
"homepage": "https://null.house/open-source/parsehttpdate",
"keywords": [
"http",
"dates",
"date",
"last-modified"
]
}