forked from grantholle/moviedb-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "moviedb-promise",
"description": "A library for interacting with themoviedb.org API using Promises",
"version": "3.1.9",
"scripts": {
"test": "npm run build && ./node_modules/.bin/mocha ./tests/*.js --reporter spec",
"build": "rm -rf ./dist && ./node_modules/.bin/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 (http://github.com/ShaunLWM)"
],
"dependencies": {
"axios": "^0.21.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/node": "^13.11.1",
"chai": "^3.5.0",
"colors": "^1.3.0",
"dotenv": "^8.2.0",
"mocha": "^5.2.0",
"prettier": "^2.3.1",
"typescript": "^3.8.3"
}
}