-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 875 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 875 Bytes
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
{
"name": "imdb-scrapper",
"version": "2.3.1",
"description": "scrap data from imdb web site",
"main": "index.js",
"scripts": {
"test": "node ./test/test.js",
"test-new": "node ./test/test-new.js",
"fix": "standard --fix",
"prettier": "prettier --write ./*.js|./**/*.js",
"output": "node outputGenerator.js"
},
"keywords": [
"imdb",
"scraper",
"movies",
"trending",
"tv show"
],
"repository": "git+https://github.com/hack-throne/imdb-scrapper.git",
"author": "hack-throne",
"license": "MIT",
"bugs": {
"url": "https://github.com/hack-throne/imdb-scrapper/issues"
},
"homepage": "https://github.com/hack-throne/imdb-scrapper#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"d3-time-format": "^2.2.3"
},
"devDependencies": {
"prettier": "^1.19.1",
"standard": "^11.0.1"
}
}