-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.64 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@tubular/time",
"version": "3.9.3",
"description": "Date/time, IANA timezones, leap seconds, TAI/UTC conversions, calendar with settable Julian/Gregorian switchover",
"main": "dist/cjs/index.js",
"module": "dist/fesm2015/index.js",
"esm2015": "dist/index.js",
"fesm2015": "dist/fesm2015/index.js",
"typings": "dist/index",
"sideEffects": false,
"exports": {
"import": "./dist/fesm2015/index.js",
"require": "./dist/cjs/index.js",
"script": "./dist/umd/index.js",
"default": "./dist/cjs/index.js"
},
"engines": {
"node": ">=10.24.1"
},
"scripts": {
"build": "rimraf dist/ && tsc && rollup -c -m && webpack && ts-node make-remote-zone-data.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepack": "npm run build",
"lint": "eslint 'src/**/*.ts' '**/*.cjs'",
"test": "nyc --reporter=html mocha --require ts-node/register src/**/*.spec.ts",
"document": "typedoc --name \"ks-date-time-zone\" --module commonjs --exclude \"**/*+(e2e|spec|index).ts\" --excludePrivate --excludeProtected --readme README.md --target ES5 --out docs src"
},
"keywords": [
"astronomy",
"calendar",
"date",
"gregorian",
"iana",
"julian",
"leap second",
"moment",
"olson",
"tdt",
"tai",
"time",
"time zone",
"timezone",
"tzdata",
"zoneinfo"
],
"author": "Kerry Shetline <[email protected]>",
"license": "MIT",
"dependencies": {
"@tubular/math": "^3.3.1",
"@tubular/util": "^4.16.1"
},
"optionalDependencies": {
"by-request": "^1.3.4",
"json-z": "^3.3.2"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/preset-env": "^7.17.10",
"@babel/register": "^7.17.7",
"@rollup/plugin-typescript": "^8.3.2",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^15.14.9",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"babel-loader": "^8.2.5",
"chai": "^4.3.6",
"coveralls": "^3.1.1",
"eslint": "^8.14.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.71.1",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"terser-webpack-plugin": "^5.3.1",
"ts-node": "^10.7.0",
"typescript": "~4.6.4",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^3.0.0"
},
"repository": "github:kshetline/tubular_time.git"
}