-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
116 lines (116 loc) · 2.76 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "postcss-combine-duplicated-selectors",
"version": "10.0.3",
"description": "automatically keep css selectors unique",
"main": "src/index.js",
"types": "types/index.d.ts",
"files": [
"src",
"types/index.d.ts"
],
"scripts": {
"commit": "commit",
"test": "run-s test:*",
"test:unit": "ava",
"test:lint-js": "eslint --ext md,js .",
"test:lint-md": "remark *.md -q --no-stdout",
"test:types": "dtslint types",
"commitlint": "commitlint --from HEAD~1",
"prepare": "husky install"
},
"keywords": [
"postcss-plugin",
"selector"
],
"author": {
"name": "Christian Murphy",
"email": "christian.murphy.42@gmail.com",
"url": "https://github.com/ChristianMurphy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ChristianMurphy/postcss-combine-duplicated-selectors.git"
},
"homepage": "https://github.com/ChristianMurphy/postcss-combine-duplicated-selectors",
"bugs": {
"url": "https://github.com/ChristianMurphy/postcss-combine-duplicated-selectors/issues"
},
"license": "MIT",
"peerDependencies": {
"postcss": "^8.1.0"
},
"dependencies": {
"postcss-selector-parser": "^6.0.4"
},
"devDependencies": {
"@commitlint/cli": "17.8.0",
"@commitlint/config-conventional": "17.8.0",
"@commitlint/prompt-cli": "17.8.0",
"ava": "3.15.0",
"dtslint": "4.2.1",
"eslint": "8.51.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-ava": "14.0.0",
"eslint-plugin-markdown": "3.0.1",
"husky": "8.0.3",
"npm-run-all": "4.1.5",
"postcss": "8.4.31",
"postcss-less": "6.0.0",
"postcss-nested": "6.0.1",
"postcss-scss": "4.0.9",
"remark-cli": "11.0.0",
"remark-preset-lint-consistent": "5.1.2",
"remark-preset-lint-recommended": "6.1.3",
"remark-validate-links": "12.1.1",
"typescript": "5.2.2"
},
"engines": {
"node": "^14.0.0 || ^16.0.0 || >=18.0.0"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"es6": true,
"node": true
},
"extends": [
"eslint:recommended",
"google",
"plugin:markdown/recommended"
],
"rules": {
"prefer-arrow-callback": "error",
"prefer-const": "error",
"prefer-template": "error"
}
},
"remarkConfig": {
"plugins": [
"preset-lint-recommended",
"preset-lint-consistent",
"validate-links"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"renovate": {
"extends": [
"config:base"
],
"automerge": true,
"major": {
"automerge": false
},
"lockFileMaintenance": {
"enabled": true
},
"semanticPrefix": "chore:",
"semanticCommitScope": ""
}
}