-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
{
"name": "microsoccer",
"description": "Microservice to fetch soccer matches info and tv channels",
"version": "1.1.1",
"author": "Pablo Varela <[email protected]>",
"bugs": {
"url": "https://github.com/pablopunk/microsoccer/issues",
"email": "[email protected]"
},
"contributors": [
"Pablo Varela <[email protected]>"
],
"dependencies": {
"@koa/cors": "^3.0.0",
"cache": "^2.1.0",
"koa": "^2.7.0",
"koa-incache": "^0.5.0",
"livesoccertv-parser": "^5.3.0"
},
"devDependencies": {
"husky": "^2.2.0",
"nodemon": "^1.19.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.10.0",
"standard": "^10.0.3"
},
"homepage": "https://github.com/pablopunk/microsoccer",
"keywords": [
"microservicer",
"soccer",
"football",
"futbol",
"server",
"servicio",
"madrid",
"barcelona",
"http"
],
"license": "MIT",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2
},
"repository": {
"type": "git",
"url": "https://github.com/pablopunk/microsoccer"
},
"scripts": {
"dev": "NODE_ENV=development nodemon index.js"
}
}