-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
{
"name": "vertical-rhythm-reset",
"version": "2.0.1",
"description": "A Sass/SCSS library for responsive vertical rhythm grids, modular scale typography, and CSS normalization.",
"author": "John Hildenbiddle",
"license": "MIT",
"homepage": "http://jhildenbiddle.github.io/vertical-rhythm-reset/",
"repository": {
"type": "git",
"url": "git+https://[email protected]/jhildenbiddle/vertical-rhythm-reset.git"
},
"bugs": {
"url": "https://github.com/jhildenbiddle/vertical-rhythm-reset/issues"
},
"keywords": [
"css",
"grid",
"mixin",
"modular",
"normalize",
"reset",
"rhythm",
"sass",
"scale",
"scss",
"vertical"
],
"files": [
"dist"
],
"main": "dist/_vertical-rhythm-reset.scss",
"scripts": {
"build": "npm run build:sass & npm run build:sassdoc",
"build:sass": "sass src/docs/scss:docs/assets/css --style=expanded --load-path=dist",
"build:sassdoc": "sassdoc ./dist -d ./docs/sassdoc",
"clean": "rimraf docs/assets/css/* docs/sassdoc/*",
"lint": "markdownlint . --ignore node_modules",
"prepare": "npm run clean && npm run build",
"serve": "node server.js",
"start": "npm run serve & npm run watch",
"test": "npm run lint",
"watch": "npm run watch:sass & npm run watch:sassdoc",
"watch:sass": "npm run build:sass && npm run build:sass -- -w",
"watch:sassdoc": "nodemon --watch dist -e scss -x npm run build:sassdoc",
"version": "npm run prepare && npm run lint && npm run test && git add -A docs/sassdoc"
},
"devDependencies": {
"browser-sync": "^2.27.10",
"markdownlint-cli": "^0.32.1",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"sass": "^1.54.0",
"sassdoc": "^2.7.4"
}
}