This repository was archived by the owner on Aug 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
72 lines (72 loc) · 1.43 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
{
"name": "linter-stylelint",
"version": "2.0.1",
"private": true,
"description": "A plugin for Atom Linter providing an interface to stylelint.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/AtomLinter/linter-stylelint.git"
},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"scripts": {
"test": "eslint ."
},
"keywords": [
"css",
"lint",
"postcss",
"stylelint"
],
"author": {
"name": "1000ch",
"email": "shogo.sensui@gmail.com",
"url": "http://github.com/1000ch"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AtomLinter/linter-stylelint/issues"
},
"homepage": "https://github.com/AtomLinter/linter-stylelint#readme",
"dependencies": {
"atom-linter": "^4.4.0",
"atom-package-deps": "^4.0.1",
"cosmiconfig": "^1.1.0",
"deep-assign": "^2.0.0",
"stylelint": "^5.0.1",
"stylelint-config-standard": "^4.0.1"
},
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.0.1"
},
"eslintConfig": {
"rules": {
"comma-dangle": [
2,
"never"
],
"no-console": 0
},
"extends": "airbnb/base",
"globals": {
"atom": true
},
"env": {
"es6": true,
"node": true
}
},
"package-deps": [
"linter"
],
"providedServices": {
"linter": {
"versions": {
"1.0.0": "provideLinter"
}
}
}
}