-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·24 lines (24 loc) · 956 Bytes
/
package.json
File metadata and controls
executable file
·24 lines (24 loc) · 956 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
{
"name": "drig",
"version": "1.1.0",
"description": "De Rest Is Geschiedenis website",
"scripts": {
"build": "npm run build:scss && npm run build:xml && npm run build:xsl && npm run build:html",
"build:html": "xslt3 -xsl:./src/style-source.xsl -s:./src/podcast-source.xml -o:index.html -t",
"build:scss": "dart-sass --style=compressed ./style/index.scss style.css",
"build:scss-help": "dart-sass --help",
"build:xml": "./node_modules/minify-xml/cli.js ./src/podcast-source.xml --output podcast.xml",
"build:xsl": "./node_modules/minify-xml/cli.js ./src/style-source.xsl --output style.xsl",
"start": "lite-server --port 10001",
"start:a11y": "python3 -m http.server 3000",
"test:a11y": "axe localhost:3000 --browser firefox-headless"
},
"author": "",
"license": "ISC",
"devDependencies": {
"dart-sass": "^1.25.0",
"lite-server": "^2.6.1",
"minify-xml": "^2.5.0",
"xslt3": "^2.1.0"
}
}