-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 907 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
{
"name": "ettv-api",
"version": "1.0.2",
"description": "An ETTV API wrapper for NodeJS. ",
"dependencies": {
"debug": "^3.1.0"
},
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-vixo": "^2.0.2",
"mocha": "^5.1.1",
"nyc": "^11.7.1",
"standard-version": "^4.3.0"
},
"license": "MIT",
"scripts": {
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint {examples,test}/** *.js",
"release": "standard-version",
"pretest": "npm run lint",
"test": "nyc -r=text -r=lcov mocha --timeout 20000 --exit"
},
"engines": {
"node": ">=6.13.0"
},
"keywords": [
"ettv",
"torrent",
"api",
"popcorn"
],
"files": [
"index.js"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ChrisAlderson/ettv-api.git"
}
}