-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 787 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "mdss",
"version": "2.1.0",
"description": "Stylesheets for displaying and printing Markdown documents",
"author": "Márton Visnovitz <vimtaai@inf.elte.hu>",
"license": "MIT",
"main": "build/mdss.min.css",
"bin": "bin/mdss.js",
"repository": "github:vimtaai/mdss",
"bugs": "https://github.com/vimtaai/mdss/issues",
"homepage": "https://github.com/vimtaai/mdss#readme",
"scripts": {
"build": "node bin/mdss.js build --all --config-path src/config --output-path build",
"build:dev": "node bin/mdss.js build --dev --all --config-path src/config --output-path build",
"prepare": "npm run build && npm run build:dev"
},
"dependencies": {
"commander": "^2.18.0",
"csso": "^3.5.1",
"mkdirp": "^0.5.1",
"node-sass": "^4.9.3"
}
}