-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
48 lines (48 loc) · 1.04 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
{
"name": "node-tvdb",
"description": "Node.js library for accessing TheTVDB's API",
"version": "5.0.0",
"author": "Edward Wellbrook <[email protected]>",
"keywords": [
"tv",
"tvdb",
"thetvdb",
"api",
"wrapper"
],
"homepage": "https://github.com/edwellbrook/node-tvdb",
"main": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">= 14.*"
},
"repository": {
"type": "git",
"url": "git://github.com/edwellbrook/node-tvdb.git"
},
"dependencies": {
"lodash": "^4.17.11",
"node-fetch": "^2.4.1"
},
"devDependencies": {
"@edwellbrook/minami": "^1.3.1",
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"eslint": "^6.0.0",
"eslint-plugin-mocha": "^6.0.0",
"jsdoc": "^3.5.5",
"mocha": "^6.1.4",
"nock": "^11.1.0",
"sinon": "^7.4.1",
"sinon-chai": "^3.0.0"
},
"scripts": {
"test": "mocha test && eslint .",
"eslint": "eslint .",
"generate-docs": "rm -rf ./docs && jsdoc -c .jsdoc.json"
},
"license": "MIT"
}