-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.05 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
{
"name": "@area17/parse-numeric-date",
"version": "0.0.9",
"description": "Parse numeric based date inputs",
"type": "module",
"source": "src/index.js",
"exports": {
"require": "./dist/parse-numeric-date.cjs",
"default": "./dist/parse-numeric-date.modern.js"
},
"main": "./dist/parse-numeric-date.cjs",
"module": "./dist/parse-numeric-date.module.js",
"unpkg": "./dist/parse-numeric-date.umd.js",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"devdebug": "microbundle watch --compress false",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/area17/parse-numeric-date.git"
},
"keywords": [
"date"
],
"author": "A17 <[email protected]> (https://area17.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/area17/parse-numeric-date/issues"
},
"homepage": "https://github.com/area17/parse-numeric-date#readme",
"devDependencies": {
"jest": "^29.5.0",
"microbundle": "^0.15.1"
}
}