-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 940 Bytes
/
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
{
"name": "tizo",
"main": "out/index.js",
"types": "out/index.d.ts",
"version": "3.0.0",
"description": "easily parse a string including time and a timezone",
"license": "MIT",
"repository": "maxrimue/tizo",
"author": {
"name": "maxrimue",
"email": "[email protected]",
"url": "https://github.com/maxrimue"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"prettier-fix": "prettier --write *.ts",
"test": "prettier --check *.ts && tsc && ava out/test.js",
"build": "tsc",
"prepublish": "tsc"
},
"files": [
"out/index.js",
"out/index.d.ts",
"out/timezones.js",
"out/timezones.d.ts"
],
"keywords": [
"timezone",
"converter",
"convert",
"get",
"local",
"time",
"utc",
"gmt",
"time zone"
],
"dependencies": {},
"devDependencies": {
"ava": "^2.1.0",
"prettier": "^1.16.4",
"typescript": "^3.3.3333"
}
}