-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.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
{
"name": "globol",
"version": "0.11.2",
"type": "module",
"description": "Javascript/Typescript date/time as it should be: immutable, fluent, multi-zone, intuitive. Inspired by the masterful java.time library which suddenly made dates easy.",
"keywords": [
"time",
"date",
"datetime",
"typescript",
"javascript",
"java.time",
"timezone",
"zoneid",
"time zone",
"duration"
],
"author": "David Duwaer",
"license": "MIT",
"homepage": "https://github.com/Artiry/globol#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Artiry/globol.git"
},
"bugs": {
"url": "https://github.com/Artiry/globol/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "tests"
},
"scripts": {
"clear": "rimraf dist",
"build": "npm run clear && tsc",
"pretest": "npm run build",
"build-dev": "npm run clear && tsc --sourceMap",
"test": "npm run build-dev && nyc mocha tests/**/*.test.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm install && npm run build && npm run test"
},
"dependencies": {
"moment": "^2.29.4",
"moment-timezone": "^0.5.43"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/moment-timezone": "^0.5.30",
"@types/moxios": "^0.4.10",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.1",
"mocha": "^10.2.0",
"moxios": "^0.4.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}