-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 872 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
47
48
49
{
"name": "tizo-cli",
"version": "1.0.1",
"description": "tizo module for the cli",
"license": "MIT",
"repository": "maxrimue/tizo-cli",
"author": {
"name": "maxrimue",
"email": "[email protected]",
"url": "https://github.com/maxrimue"
},
"bin": {
"tizo": "out/cli.js"
},
"engines": {
"node": ">=6"
},
"scripts": {
"prettier-fix": "prettier --write *.ts",
"test": "prettier --check *.ts && tsc && ava out/test.js",
"build": "tsc",
"prepublish": "tsc"
},
"files": [
"out/index.js",
"out/cli.js"
],
"keywords": [
"cli-app",
"cli",
"tizo",
"timezone",
"timezones",
"time",
"convert",
"parse"
],
"dependencies": {
"meow": "^5.0.0",
"tizo": "^2.0.1"
},
"devDependencies": {
"@types/meow": "^5.0.0",
"@types/node": "^12.0.10",
"ava": "^1.1.0",
"prettier": "^1.16.4",
"typescript": "^3.3.3333"
}
}