This repository has been archived by the owner on Dec 1, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "@mgsisk/postcss-modular-rhythm",
"version": "0.4.1",
"description": "PostCSS plugin that adds modular scale and vertical rhythm units to CSS.",
"main": "src/index.js",
"scripts": {
"fix.js": "eslint --fix '**/*.js' '**/.*.js'",
"fix.md": "remark . .github/ --ignore-pattern 'LICENSE*' -o",
"fix.sh": "shellcheck *.sh -f diff | git apply",
"lint.js": "eslint '**/*.js' '**/.*.js'",
"lint.json": "YAMLLINT_SCHEMA=JSON_SCHEMA yamllint '**/*.json' '**/.*.json'",
"lint.md": "remark . .github/ --ignore-pattern LICENSE*",
"lint.sh": "shellcheck *.sh",
"lint.yml": "yamllint '**/*.yml' '**/.*.yml'",
"test": "tap test",
"preversion": "npm test",
"version": "git add --all",
"postversion": "git push --follow-tags"
},
"repository": "github:mgsisk/postcss-modular-rhythm",
"keywords": [
"css",
"modular-scale",
"postcss",
"postcss-plugin",
"vertical-rhythm"
],
"author": "mgsisk <me@mgsisk.com> (https://mgsisk.com)",
"license": "ISC",
"bugs": "https://github.com/mgsisk/postcss-modular-rhythm/issues",
"homepage": "https://github.com/mgsisk/postcss-modular-rhythm#readme",
"funding": "https://github.com/mgsisk/postcss-modular-rhythm?sponsor=1",
"files": [
"src/"
],
"directories": {
"doc": "docs",
"lib": "src",
"test": "test"
},
"peerDependencies": {
"postcss": ">= 8"
},
"devDependencies": {
"@mgsisk/eslint-config": "^2.0.0",
"@mgsisk/remark-lint-config": "^0.3.0",
"eslint": "^7.9.0",
"postcss": "^8.0.7",
"remark-cli": "^8.0.1",
"shellcheck": "^0.4.4",
"tap": "^14.10.8",
"yaml-lint": "^1.2.4"
}
}