-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.85 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
{
"name": "postcss-combine-duplicated-selectors",
"version": "2.3.0",
"description": "automatically keep css selectors unique",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"test": "ava && eslint --ext md,js . && remark *.md -q --no-stdout",
"precommit": "npm test"
},
"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"
},
"bugs": {
"url": "https://github.com/ChristianMurphy/postcss-combine-duplicated-selectors/issues"
},
"license": "MIT",
"dependencies": {
"postcss": "^6.0.2",
"postcss-selector-parser": "^2.2.3"
},
"devDependencies": {
"ava": "^0.20.0",
"eslint": "^4.0.0",
"eslint-config-google": "^0.8.0",
"eslint-plugin-ava": "^4.2.1",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"husky": "^0.14.0",
"postcss-less": "^1.0.2",
"postcss-nested": "^2.0.2",
"postcss-scss": "^1.0.1",
"remark-cli": "^3.0.1",
"remark-preset-lint-consistent": "^2.0.0",
"remark-preset-lint-recommended": "^2.0.0",
"remark-validate-links": "^6.1.0"
},
"engines": {
"node": ">=8"
},
"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"
]
}
}