This repository has been archived by the owner on Jun 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.47 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
{
"name": "utc-date",
"version": "0.0.11",
"description": "Experimental Date object overwrite for always using UTC / GMT date and time.",
"type": "module",
"main": "load.js",
"scripts": {
"start": "node load.js",
"test": "rm -rf coverage/ && cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage --coverageProvider=v8",
"coverage": "npm test && cat ./coverage/lcov.info | npx coveralls"
},
"author": "jhmaster (https://github.com/jhmaster2000)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/jhmaster2000/utc-date.git"
},
"homepage": "https://www.npmjs.com/package/utc-date",
"bugs": {
"url": "https://github.com/jhmaster2000/utc-date/issues"
},
"keywords": [
"utc",
"gmt",
"date",
"time",
"datetime",
"utcdate",
"gmtdate",
"dateutc",
"dategmt",
"utc-date",
"gmt-date",
"date-utc",
"date-gmt"
],
"jest": {
"transform": {},
"coverageReporters": [
"html",
"text",
"lcov",
"lcovonly",
"json"
],
"collectCoverageFrom": [
"./load.js",
"./UTCDate/{!(Console),}.js",
"./UTCDate/to/**"
]
},
"devDependencies": {
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"jest": "^27.5.1",
"prettier": "^2.5.1"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/{!(coverage|*.tgz|tests|CalculateTZ.js),}",
"/tests/main.test.js",
"/tests/testerUtils.js"
]
}