-
Notifications
You must be signed in to change notification settings - Fork 120
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "awesome-it-films",
"version": "2.0.0",
"description": "List of movies, documentaries and TV series about hackers, geeks and IT in common, sorted by IMDB rating.",
"directories": {
"doc": "docs"
},
"scripts": {
"serve": "docsify serve . --open",
"build-all": "npm run build-movies & npm run build-tv-series & npm run build-documentary & npm run build-badge-schema",
"build-movies": "node ./markdown_builder/movie_markdown_build.js",
"build-tv-series": "node ./markdown_builder/shows_markdown_build.js",
"build-documentary": "node ./markdown_builder/documentary_markdown_build.js",
"build-badge-schema": "node ./markdown_builder/badge_schema.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/greybax/awesome-IT-films.git"
},
"keywords": [
"movies",
"geek",
"hacking",
"hack",
"IT",
"computers"
],
"author": "Aleksandr Filatov",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/greybax/awesome-IT-films/issues"
},
"homepage": "https://github.com/greybax/awesome-IT-films#readme",
"devDependencies": {
"docsify": "4.12.0",
"imdb-api": "4.4.1",
"dotenv": "8.2.0"
}
}