-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.07 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
{
"name": "igdb-api-node",
"version": "5.0.2",
"main": "lib/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/twitchtv/igdb-api-node.git"
},
"homepage": "https://api-docs.igdb.com",
"keywords": [
"api",
"games",
"igdb",
"wrapper"
],
"author": "IGDB <[email protected]>",
"bugs": {
"url": "https://twitch.uservoice.com/forums/929953-igdb?category_id=389365"
},
"contributors": [
"Jake Cattrall <[email protected]>",
"Duane Sibilly <[email protected]>"
],
"dependencies": {
"apicalypse": "^0.2.0",
"deepmerge": "^4.2.2",
"is-plain-object": "^4.0.0"
},
"description": "Nodejs API Wrapper for the IGDB.com API",
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"mocha": "^10.1.0"
},
"scripts": {
"build": "babel js -d lib",
"prepare": "npm run build",
"start": "node lib/index.js | bunyan -L",
"test": "npm run build && mocha"
}
}