forked from stylelint/stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
128 lines (128 loc) · 3.15 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
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "stylelint",
"version": "6.8.0",
"description": "Modern CSS linter",
"keywords": [
"css",
"csslint",
"lint",
"linter",
"stylelint"
],
"authors": [
"David Clark",
"Maxime Thirouin",
"Richard Hallows"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stylelint/stylelint.git"
},
"main": "dist/index.js",
"bin": "dist/cli.js",
"files": [
"CONTRIBUTING.md",
"dist",
"src",
"docs",
"!**/__tests__"
],
"dependencies": {
"autoprefixer": "^6.0.0",
"balanced-match": "^0.4.0",
"chalk": "^1.1.1",
"colorguard": "^1.2.0",
"cosmiconfig": "^1.1.0",
"doiuse": "^2.3.0",
"execall": "^1.0.0",
"get-stdin": "^5.0.0",
"globby": "^5.0.0",
"globjoin": "^0.1.2",
"htmlparser2": "^3.9.0",
"html-tags": "^1.1.1",
"lodash": "^4.0.0",
"log-symbols": "^1.0.2",
"meow": "^3.3.0",
"multimatch": "^2.1.0",
"normalize-selector": "^0.2.0",
"postcss": "^5.0.20",
"postcss-less": "^0.13.0",
"postcss-reporter": "^1.3.0",
"postcss-resolve-nested-selector": "^0.1.1",
"postcss-scss": "^0.1.3",
"postcss-selector-parser": "^2.0.0",
"postcss-value-parser": "^3.1.1",
"resolve-from": "^2.0.0",
"specificity": "^0.2.1",
"string-width": "^1.0.1",
"stylehacks": "^2.3.0",
"sugarss": "^0.1.2",
"svg-tags": "^1.0.0",
"table": "^3.7.8"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-tape-runner": "^2.0.0",
"benchmark": "^2.1.0",
"common-tags": "^1.3.0",
"coveralls": "^2.11.9",
"eslint": "^3.0.0",
"eslint-config-stylelint": "^3.0.0",
"npm-run-all": "^2.1.0",
"npmpub": "^3.0.1",
"nyc": "^6.4.4",
"postcss-import": "^8.0.2",
"remark-cli": "^1.0.0",
"remark-lint": "^4.0.0",
"request": "^2.69.0",
"rimraf": "^2.5.2",
"sinon": "^1.16.1",
"tape": "^4.2.0"
},
"scripts": {
"benchmark-rule": "babel-node scripts/benchmark-rule.js",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail",
"lint": "npm-run-all --parallel lint:*",
"pretest": "npm run lint",
"tape": "nyc babel-tape-runner \"src/**/__tests__/*.js\"",
"test": "npm run tape",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist",
"prepublish": "npm run build",
"release": "npmpub"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"extends": "stylelint",
"rules": {
"arrow-spacing": 2,
"no-var": 2,
"object-shorthand": 2,
"prefer-const": 2,
"template-curly-spacing": 2
}
},
"remarkConfig": {
"plugins": {
"lint": {
"list-item-content-indent": false,
"list-item-indent": "space",
"list-item-spacing": false,
"maximum-heading-length": false,
"maximum-line-length": false,
"no-duplicate-headings": false,
"no-heading-punctuation": false,
"no-missing-blank-lines": false,
"no-multiple-toplevel-headings": false
}
}
}
}