-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
64 lines (64 loc) · 1.58 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
{
"name": "overwatch-api-server",
"version": "0.12.0",
"description": "An Unoffical Overwatch HTTP API",
"main": "server/index.js",
"engines": {
"node": ">=8.17.0"
},
"dependencies": {
"async": "^2.6.1",
"cheerio": "^0.22.0",
"redis": "^3.0.2",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"srv-cli": "0.4.1",
"svg-builder": "^1.0.0"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/polyfill": "^7.10.4",
"@babel/register": "^7.10.4",
"ava": "^3.10.1",
"nyc": "^15.1.0"
},
"scripts": {
"start": "node node_modules/srv-cli/build/srv server/index.js",
"start-dev": "nodemon node_modules/srv-cli/build/srv server/index.js",
"docs": "node node_modules/srv-cli/build/srv server/index.js --docs server/routes",
"debug": "node --nolazy --debug-brk=5858 node_modules/srv-cli/build/srv server/index.js",
"lint": "node node_modules/srv-cli/build/srv --lint",
"test-api": "cd api && nyc ava -v",
"test-server": "nyc ava -v",
"test": "npm run test-server && npm run test-api"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfg/overwatch-api.git"
},
"keywords": [
"node",
"overwatch",
"api",
"rest",
"http",
"srv",
"express"
],
"author": "Alf",
"license": "MIT",
"bugs": {
"url": "https://github.com/alfg/overwatch-api/issues"
},
"homepage": "https://github.com/alfg/overwatch-api",
"ava": {
"files": [
"test/**/*"
],
"babel": true,
"require": [
"@babel/register",
"@babel/polyfill"
]
}
}