forked from jgthms/wysiwyg.css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "wysiwyg.css",
"version": "0.0.3",
"description": "A tiny CSS for generated HTML or Markdown content",
"main": "wysiwyg.css",
"scripts": {
"build": "npm run build-clean && npm run build-wysiwyg && npm run build-autoprefix",
"build-autoprefix": "postcss --use autoprefixer --output wysiwyg.css wysiwyg.css",
"build-clean": "rm -rf wysiwyg.css",
"build-wysiwyg": "node-sass --output-style compressed wysiwyg.sass wysiwyg.css",
"docs": "node-sass --output-style compressed docs/docs.sass docs/docs.css",
"start": "npm run docs -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgthms/wysiwyg.css.git"
},
"keywords": [
"css",
"markdown",
"sass",
"generated",
"html"
],
"author": "Jeremy Thomas <[email protected]> (http://jgthms.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jgthms/wysiwyg.css/issues"
},
"homepage": "https://github.com/jgthms/wysiwyg.css#readme",
"devDependencies": {
"autoprefixer": "^6.4.1",
"minireset.css": "0.0.2",
"node-sass": "^4.7.2",
"postcss-cli": "^2.6.0"
},
"files": [
"themes",
"wysiwyg.css",
"wysiwyg.sass"
]
}