-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.77 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
58
59
60
61
62
63
64
{
"name": "movie-script-scraper",
"description": "A simple scraper to retrieve movie scripts by genre or title from IMSDB.",
"version": "0.0.6",
"homepage": "https://github.com/JoeKarlsson/movie-script-scraper",
"keywords": [
"movie script scraper",
"movie",
"film",
"scraper",
"imscb",
"script sraper",
"screenplay"
],
"author": {
"name": "Joe Karlsson",
"email": "joekarlsson1@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/JoeKarlsson/movie-script-scraper.git"
},
"bugs": {
"url": "https://github.com/JoeKarlsson/movie-script-scraper/issues"
},
"license": "MIT",
"main": "src/mss",
"scripts": {
"start": "node src/app",
"start:title": "node src/app --title 'frozen'",
"test": "jest --coverage",
"coverage": "nyc report --temp-directory=coverage --reporter=text-lcov | coveralls",
"test:watch": "jest --watch",
"test:updateSnapshot": "jest --updateSnapshot",
"test:coverage": "jest --coverage",
"lint": "eslint src",
"healthcheck": "npm run lint && npm run test:coverage",
"precommit": "npm run lint",
"prepush": "npm prune && npm run healthcheck",
"postmerge": "npm install"
},
"dependencies": {
"cheerio": "1.0.0-rc.2",
"isomorphic-fetch": "2.2.1",
"lodash": "^4.17.15",
"minimist": "1.2.0",
"mkdirp": "0.5.1",
"string": "3.3.3"
},
"devDependencies": {
"coveralls": "3.0.1",
"eslint": "5.0.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-config-prettier": "2.9.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.1",
"fetch-mock": "6.4.4",
"husky": "0.14.3",
"jest": "23.2.0",
"nyc": "12.0.2",
"prettier": "1.13.6"
}
}