-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "node-themoviedb",
"version": "0.2.8",
"description": "A Node.JS wrapper for The Movie DB API.",
"author": "Andy Wampir <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"devDependencies": {
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"del-cli": "^3.0.1",
"eslint": "^7",
"np": "^7.4.0",
"typescript": "^4.1.3"
},
"dependencies": {
"got": "^11.8.2"
},
"scripts": {
"build": "del-cli dist && tsc",
"test": "echo \"No test specified\"",
"release": "yarn build && np",
"release:preview": "np --preview",
"prepublish": "eslint --ext .ts ./src/**",
"prepare": "npm run build"
},
"files": [
"dist/**/*.js*",
"LICENSE.md",
"index.d.ts"
],
"keywords": [
"tmdb",
"tmdb api",
"moviedb",
"the moviedb",
"the movie database"
],
"repository": {
"type": "git",
"url": "https://github.com/andywampir/node-themoviedb.git"
},
"bugs": {
"url": "https://github.com/andywampir/node-themoviedb/issues"
},
"homepage": "https://github.com/andywampir/node-themoviedb"
}