-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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": "tvdb.js",
"version": "1.0.7",
"description": "Node.js wrapper for thetvdb.com API",
"main": "tvdb.js",
"scripts": {
"test": "mocha",
"coverage": "istanbul cover _mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"tvdb",
"thetvdb",
"tv",
"tv api",
"tv shows",
"shows"
],
"author": "Saïd Mimouni <sayid.mimouni@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/saidM/tvdb.js"
},
"xo": {
"space": true,
"semicolon": false,
"envs": [
"node",
"mocha"
]
},
"dependencies": {
"lodash": "^4.16.6",
"request": "^2.78.0",
"xml2js": "^0.4.17"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"nock": "^9.0.2",
"xo": "^0.18.2"
}
}