-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
32 lines (32 loc) · 1.11 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
{
"name": "mdbook-presentation-preprocessor",
"version": "0.1.2",
"description": "A preprocessor for utilizing an MDBook as slides for a presentation.",
"main": "index.js",
"directories": {
"doc": "api_docs"
},
"dependencies": {},
"devDependencies": {
"ts-docs-gen": "^0.2.0",
"typescript": "^3.5.0",
"uglify-js": "^3.6.0"
},
"scripts": {
"build-ts": "node_modules/.bin/tsc",
"build-api-docs": "node_modules/.bin/ts-docs-gen --config tsDocConfig.json",
"build-ugly": "node_modules/.bin/uglifyjs ./*.js --compress --mangle -o ./src/presentationHider.js",
"build-js": "npm run build-ts && npm run build-api-docs && npm run build-ugly",
"build-style": "rsass --style Compressed ./presentationHider.scss > ./src/presentationHider.css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freemasen/mdbook-presentation-preprocessor.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/freemasen/mdbook-presentation-preprocessor/issues"
},
"homepage": "https://github.com/freemasen/mdbook-presentation-preprocessor#readme"
}