-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
68 lines (68 loc) · 2.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "any-date-parser",
"version": "2.0.3",
"description": "Parse a wide range of date formats including human-input dates",
"tags": [
"date",
"datetime",
"parse",
"parser",
"date parser",
"parse date",
"human"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"sideEffects": false,
"scripts": {
"demo": "npm run build && npx serve -p 5050 .",
"test": "./scripts/test.sh run",
"test-watch": "./scripts/test.sh",
"are-we-fuzzy-yet": "TZ=UTC bun ./test-fixtures/are-we-fuzzy-yet.ts",
"build": "npm run build:clean && npm run build:dts && npm run build:esm && npm run build:cjs",
"build:clean": "rimraf dist/ && mkdir dist",
"build:dts": "yes | npx dts-bundle-generator -o dist/index.d.ts src/main.ts",
"build:esm": "yes | npx esbuild src/main.ts --minify --bundle --platform=node --format=esm --outfile=dist/index.mjs",
"build:cjs": "yes | npx esbuild src/main.ts --minify --bundle --platform=node --format=cjs --outfile=dist/index.cjs",
"coverage": "./scripts/test.sh run --coverage",
"view-coverage": "open ./coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kensnyder/any-date-parser.git"
},
"author": {
"name": "Ken Snyder",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/kensnyder/any-date-parser/issues"
},
"homepage": "https://github.com/kensnyder/any-date-parser#readme",
"devDependencies": {
"@types/node": "22.10.7",
"@vitest/coverage-v8": "3.0.2",
"eslint": "8.16.0",
"luxon": "3.5.0",
"prettier": "3.4.2",
"prettier-plugin-organize-imports": "4.1.0",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"vitest": "3.0.2"
}
}