-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 1.62 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
{
"name": "chicagomaroon.github.io",
"version": "1.0.0",
"description": "Feature stories by The Chicago Maroon grouped by year into corresponding folders.",
"main": "index.js",
"scripts": {
"create-visual": "mkdir -p ./$npm_config_year/$npm_config_story && cp ./template-visual/highcharts/* ./$npm_config_year/$npm_config_story && cp ./template-visual/meta_data.json ./$npm_config_year/$npm_config_story/meta_data.json",
"create-visual-d3": "mkdir -p ./$npm_config_year/$npm_config_story && cp ./template-visual/d3plus/* ./$npm_config_year/$npm_config_story && cp ./template-visual/meta_data.json ./$npm_config_year/$npm_config_story/",
"format": "npx prettier --loglevel silent --write .",
"process-visual": "npx htmlprocessor ./$npm_config_year/$npm_config_story/index.html -o ./$npm_config_year/$npm_config_story/index.proc.html && npx minify ./$npm_config_year/$npm_config_story/index.proc.html > ./$npm_config_year/$npm_config_story/$npm_config_story.min.html && rm ./$npm_config_year/$npm_config_story/index.proc.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chicagomaroon/chicagomaroon.github.io.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/chicagomaroon/chicagomaroon.github.io/issues"
},
"homepage": "https://github.com/chicagomaroon/chicagomaroon.github.io#readme",
"devDependencies": {
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"htmlprocessor": "^0.3.2",
"minify": "^9.2.0",
"minimist": "^1.2.8",
"prettier": "2.8.3"
}
}