-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.56 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
{
"name": "postcss-combine-duplicated-selectors",
"version": "9.0.0",
"description": "automatically keep css selectors unique",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"commit": "commit",
"test": "ava && eslint --ext md,js . && remark *.md -q --no-stdout",
"commitlint": "commitlint --from HEAD~1"
},
"keywords": [
"postcss-plugin",
"selector"
],
"author": {
"name": "Christian Murphy",
"email": "[email protected]",
"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",
"dependencies": {
"postcss": "^7.0.0",
"postcss-selector-parser": "^6.0.0"
},
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.2",
"@commitlint/prompt-cli": "9.1.2",
"ava": "3.12.1",
"eslint": "7.8.1",
"eslint-config-google": "0.14.0",
"eslint-plugin-ava": "11.0.0",
"eslint-plugin-markdown": "1.0.2",
"husky": "4.3.0",
"postcss-less": "3.1.4",
"postcss-nested": "4.2.3",
"postcss-scss": "2.1.1",
"remark-cli": "8.0.1",
"remark-preset-lint-consistent": "3.0.1",
"remark-preset-lint-recommended": "4.0.1",
"remark-validate-links": "10.0.2"
},
"engines": {
"node": "^10.0.0 || ^12.0.0 || >=14.0.0"
},
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 8
},
"env": {
"es6": true,
"node": true
},
"plugins": [
"markdown"
],
"extends": [
"eslint:recommended",
"google"
],
"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": ""
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}