This repository was archived by the owner on Oct 22, 2021. It is now read-only.
forked from gucong3000/postcss-markdown
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.22 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.22 KB
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
{
"name": "@stylelint/postcss-markdown",
"version": "0.36.2",
"description": "PostCSS syntax for parsing Markdown",
"repository": "stylelint/postcss-markdown",
"keywords": [
"postcss",
"syntax",
"markdown",
"html",
"css",
"less",
"sass",
"scss",
"sss",
"sugarss"
],
"main": "index.js",
"files": [
"*.js"
],
"author": "gucong",
"license": "MIT",
"nyc": {
"reporter": [
"lcov",
"text"
],
"all": true,
"cache": true,
"check-coverage": true
},
"scripts": {
"mocha": "mocha --no-timeouts",
"test": "nyc npm run mocha",
"debug": "npm run mocha -- --inspect-brk",
"release": "np"
},
"dependencies": {
"remark": "^13.0.0",
"unist-util-find-all-after": "^3.0.2"
},
"peerDependencies": {
"postcss": ">=7.0.0",
"postcss-syntax": ">=0.36.2"
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.8.1",
"mocha": "^8.2.1",
"np": "^7.0.0",
"nyc": "^15.1.0",
"postcss": ">=7.0.27",
"postcss-html": ">=0.36.0",
"postcss-less": "^3.1.4",
"postcss-scss": "^2.0.0",
"postcss-syntax": ">=0.36.2",
"sugarss": "^2.0.0"
},
"publishConfig": {
"access": "public"
}
}