-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
75
76
{
"name": "livesoccertv-parser",
"version": "6.0.6",
"description": "Parse match info from livesoccertv",
"author": "Pablo Varela <pablo@pablopunk.com>",
"scripts": {
"test": "bun run test-coverage",
"test:watch": "bunx nodemon --ext js --exec 'bun run test'",
"test-coverage": "nyc myass",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"build": "babel index.js --out-file build.js",
"prepublishOnly": "bun run build && bun run test"
},
"bugs": {
"url": "https://github.com/pablopunk/livesoccertv-parser/issues",
"email": "pablo@pablopunk.com"
},
"contributors": [
"Pablo Varela <pablo@pablopunk.com>"
],
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"city-timezones": "^1.0.3",
"moment": "^2.20.1",
"moment-timezone": "^0.5.14"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2017": "^6.24.1",
"codecov": "*",
"husky": "*",
"myass": "*",
"nyc": "*",
"prettier": "*",
"pretty-quick": "*"
},
"homepage": "https://github.com/pablopunk/livesoccertv-parser",
"keywords": [
"soccer",
"football",
"futbol",
"live",
"parser",
"games",
"tv",
"tvs",
"channels",
"guide",
"schedule",
"livesoccertv"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"reporter": [
"lcov",
"html",
"text"
]
},
"repository": {
"type": "git",
"url": "https://github.com/pablopunk/livesoccertv-parser"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2
}
}