-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 2.6 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "style.css",
"description": "Classless stylesheet for markdown documents.",
"version": "1.0.3",
"author": "Nate Goldman <[email protected]>",
"bugs": {
"url": "https://github.com/ungoldman/style.css/issues"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"gh-pages": "^6.0.0",
"gh-release": "^7.0.0",
"node-sass": "^9.0.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.0",
"serve": "^14.1.2",
"sitedown": "^5.0.1",
"stylelint": "^14.16.0",
"stylelint-config-standard-scss": "^6.1.0",
"top-bar.css": "^3.0.0"
},
"files": [
"style.css",
"style.scss",
"serif.css",
"serif.scss",
"src/scss"
],
"homepage": "https://github.com/ungoldman/style.css",
"keywords": [
"css",
"markdown",
"sass",
"style"
],
"license": "ISC",
"main": "style.css",
"repository": {
"type": "git",
"url": "[email protected]:ungoldman/style.css.git"
},
"scripts": {
"generate": "run-s generate:**",
"generate:css": "run-p 'sass:* -- -o ./'",
"generate:prefix-1": "postcss -u autoprefixer -r style.css --no-map",
"generate:prefix-2": "postcss -u autoprefixer -r serif.css --no-map",
"generate:sign": "cat style.css | pbcopy && echo \"/*! $npm_package_name v$npm_package_version | ISC License | https://github.com/ungoldman/style.css */\" > style.css && pbpaste >> style.css",
"generate:sign-2": "cat serif.css | pbcopy && echo \"/*! $npm_package_name v$npm_package_version | ISC License | https://github.com/ungoldman/style.css */\" > serif.css && pbpaste >> serif.css",
"gh-pages": "npm run site && gh-pages -d site",
"git-dirty": "./scripts/is-git-dirty.sh",
"prerelease": "run-s test generate git-dirty",
"pretest": "npm run generate:css",
"release": "git push origin master && gh-release && npm publish",
"sass:serif": "node-sass serif.scss --output-style=expanded --include-path node_modules/",
"sass:style": "node-sass style.scss --output-style=expanded --include-path node_modules/",
"serve:site": "serve site",
"serve:watch": "run-p watch:*",
"site": "run-s site:**",
"site:clean": "rm -rf site",
"site:css": "node-sass src/site/site.scss --output-style=expanded --include-path node_modules/ -o ./site",
"site:html": "sitedown . -b site/ -l src/site/layout.html --pretty=false",
"site:release": "cp *.css shoshinsha.png site",
"start": "npm-run-all site --parallel serve:*",
"test": "stylelint \"style.scss\" && stylelint \"serif.scss\"",
"watch:html": "npm run site:html -- -w",
"watch:scss": "run-p 'site:css -- -w'"
},
"style": "style.css"
}