forked from tuhinpal/imdb-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.06 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
{
"private": true,
"name": "imdb-api",
"version": "1.0.3",
"description": "Serverless IMDB API powered by Cloudflare Worker",
"main": "src/index.js",
"scripts": {
"dev": "wrangler dev src/index.js --port 3000",
"publish": "wrangler deploy src/index.js",
"test": "jest",
"start": "wrangler dev src/index.js --port 3000",
"bump": "node scripts/bump-version.js"
},
"author": "tuhinpal <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"axios": "^0.27.2",
"jest": "^28.1.0",
"wrangler": "^3.3.0"
},
"dependencies": {
"dom-parser": "^0.1.6",
"hono": "^1.4.1",
"html-entities": "^2.3.3",
"qs": "^6.11.1"
},
"directories": {
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuhinpal/imdb-api.git"
},
"keywords": [
"imdb",
"imdb-api",
"movie-list",
"cloudflare-worker",
"cloudflare-workers"
],
"bugs": {
"url": "https://github.com/tuhinpal/imdb-api/issues"
},
"homepage": "https://github.com/tuhinpal/imdb-api#readme"
}