-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.34 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
{
"name": "tvst",
"version": "0.3.1",
"description": "TV Shows Tracker (TVST) in command-line",
"main": "./lib/tvst.js",
"scripts": {
"compile": "rimraf lib && babel -d lib/ src/",
"prepublish": "npm run compile",
"pretest": "npm run lint",
"test": "ava",
"lint": "jshint ./src/*.js"
},
"author": {
"name": "Shahriar Mahmood",
"email": "[email protected]",
"url": "https://github.com/shahriar1"
},
"license": "MIT",
"bin": {
"tvst": "./lib/tvst.js"
},
"ava": {
"files": [
"tests/*.js"
]
},
"dependencies": {
"axios": "^0.21.1",
"babel-preset-es2015": "^6.24.1",
"chalk": "^1.1.3",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"commander": "^2.9.0",
"date.js": "^0.3.1",
"fs-promise": "^2.0.2",
"fuzzyset.js": "0.0.1",
"inquirer": "^3.0.6",
"lodash": "^4.13.1",
"moment": "^2.13.0",
"moment-timezone": "^0.5.4",
"ora": "^0.2.3"
},
"devDependencies": {
"ava": "^3.8.1",
"babel-cli": "^6.10.1",
"execa": "^0.4.0",
"jshint": "^2.9.2",
"rimraf": "^2.6.1"
},
"keywords": [
"tv",
"tvmaze",
"shows",
"series",
"tracker",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/shahriar1/tvst.git"
},
"bugs": {
"url": "https://github.com/shahriar1/tvst/issues"
}
}