This repository has been archived by the owner on Mar 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.99 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
{
"name": "@microflash/remarkability",
"description": "A compact CSS library for a pleasant reading experience on the web",
"version": "2.0.2",
"main": "dist/remarkability.min.css",
"scripts": {
"start": "npm-run-all site --parallel watch:*",
"watch:sass": "sass --no-source-map --watch docs/scss:public/css",
"watch:eleventy": "eleventy --serve",
"docs": "npm-run-all docs:*",
"docs:clean": "shx rm -rf public",
"docs:css": "npm-run-all site",
"docs:build": "eleventy",
"site": "npm-run-all site:*",
"site:generate": "sass --no-source-map docs/scss:public/css",
"site:postcss": "postcss --config postcss.config.js --replace \"public/css/*.css\" \"!public/css/*.min.css\"",
"site:minify": "cleancss --level 1 --format breakWith=lf --source-map --source-map-inline-sources --output public/css/style.min.css public/css/style.css",
"dist": "npm-run-all dist:*",
"dist:clean": "shx rm -rf dist",
"dist:generate": "sass scss/remarkability.scss:dist/remarkability.css",
"dist:postcss": "postcss --config postcss.config.js --replace \"dist/*.css\" \"!dist/*.min.css\"",
"dist:minify": "cleancss --level 1 --format breakWith=lf --source-map --source-map-inline-sources --output dist/remarkability.min.css dist/remarkability.css"
},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
"autoprefixer": "^10.1.0",
"clean-css-cli": "^4.3.0",
"markdown-it": "^12.0.3",
"markdown-it-anchor": "^6.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.1",
"postcss-cli": "^8.3.1",
"sass": "^1.30.0",
"shx": "^0.3.3",
"slugify": "^1.4.6"
},
"repository": "https://github.com/Microflash/remarkability.git",
"author": "Naiyer Asif (https://mflash.dev)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microflash/remarkability/issues"
},
"homepage": "https://r11y.mflash.dev",
"keywords": [
"markdown",
"css",
"sass",
"html",
"generated"
]
}