-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "@4th-motion/stylelint-config",
"description": "An easy to set up stylelint configuration that can be shared between your projects.",
"version": "1.0.6",
"main": "index.js",
"author": "Marco Koenen <mako@4thmotion.com>",
"license": "MIT",
"repository": {
"url": "git://github.com/4th-motion/stylelint-config.git",
"type": "git"
},
"keywords": [
"style guide",
"lint",
"stylelint"
],
"bin": {
"4th-stylelint": "./bin/stylelint.sh",
"4th-stylelint-init": "./init.js"
},
"scripts": {
"fresh": "rm -rf node_modules; yarn install",
"lint:js": "4th-eslint ./**/*.js --color --fix --quiet"
},
"dependencies": {
"arg": "^2",
"chalk": "4.1.2",
"postcss": "^8.4.44",
"postcss-scss": "^4.0.9",
"stylelint": "^16.9.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.5.1"
},
"devDependencies": {
"@4th-motion/eslint-config": "^1"
},
"engines": {
"node": ">=6"
},
"eslintConfig": {
"extends": [
"@4th-motion/eslint-config"
]
}
}