This repository has been archived by the owner on Jun 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 1.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "stylelint-processor-ignore-front-matter",
"description": "stylelint processor for ignore front matter",
"version": "1.0.5",
"author": "sasa+1 <[email protected]>",
"dependencies": {
"front-matter": "^4.0.2"
},
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.0",
"lodash.get": "^4.4.2",
"mocha": "^10.0.0",
"prettier": "^2.5.1",
"stylelint": "^14.1.0",
"tmp": "^0.2.1"
},
"engines": {
"node": ">=10"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"plugin:node/recommended",
"prettier"
],
"overrides": [
{
"env": {
"mocha": true
},
"files": [
"*.test.js"
]
}
],
"parserOptions": {
"ecmaVersion": "latest"
},
"root": true
},
"files": [
"index.js"
],
"keywords": [
"stylelint-processor"
],
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint",
"prettier --check"
],
"*.+(md|yml)": "prettier --check",
"!(package|package-lock).json": "prettier --check",
"package.json": [
"npx fixpack --dryRun",
"prettier --check"
]
},
"main": "./index.js",
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": "*.json",
"options": {
"parser": "json-stringify"
}
}
]
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/sasaplus1/stylelint-processor-ignore-front-matter.git"
},
"scripts": {
"fix": "eslint --fix . && prettier --write .",
"fixpack": "npx fixpack",
"lint": "eslint . && prettier --check .",
"prepare": "is-ci || husky install",
"test": "mocha index.test.js"
}
}