-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
57 lines (57 loc) · 1.52 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
{
"name": "moviedb-promise",
"description": "A library for interacting with themoviedb.org API using Promises",
"version": "4.0.7",
"scripts": {
"test": "npm run build && mocha ./tests/*.js --reporter spec",
"build": "rm -rf ./dist && tsc",
"prepare": "npm run build",
"format": "prettier --write src/**/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/grantholle/moviedb-promise.git"
},
"license": "MIT",
"keywords": [
"themoviedb",
"api",
"tmdb",
"promise"
],
"bugs": {
"url": "https://github.com/grantholle/moviedb-promise/issues"
},
"homepage": "https://github.com/grantholle/moviedb-promise#readme",
"main": "dist/index.js",
"files": [
"dist"
],
"author": "Grant Holle <https://github.com/grantholle>",
"contributors": [
"Irwing Reza <[email protected]> (http://irwingreza.com/)",
{
"name": "Chad Michael",
"email": "[email protected]",
"url": "https://medlor.com/"
},
"pankaja92 (http://thidasapankaja.me/)",
"Valentin Mocanu <[email protected]> (http://rontavstudio.com)",
"Shaun Lim (https://github.com/ShaunLWM)",
"Alexander Roidl (https://github.com/alexanderroidl)"
],
"dependencies": {
"axios": "^1.4.0",
"lodash": "^4.17.21",
"promise-throttle": "^1.1.2"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^20.4.4",
"chai": "^4.3.7",
"dotenv": "^16.3.1",
"mocha": "^10.0.0",
"prettier": "^3.0.0",
"typescript": "^5.1.6"
}
}