1 | {
|
2 | "name": "stylelint-config-shopify",
|
3 | "version": "4.0.0",
|
4 | "description": "Shopify's stylelint rules and config",
|
5 | "main": "index.js",
|
6 | "repository": {
|
7 | "type": "git",
|
8 | "url": "https://github.com/shopify/stylelint-config-shopify"
|
9 | },
|
10 | "scripts": {
|
11 | "lint": "eslint . --max-warnings 0",
|
12 | "check": "yarn run lint",
|
13 | "test": "echo 'no tests, yet'"
|
14 | },
|
15 | "keywords": [
|
16 | "stylelint",
|
17 | "stylelint-config",
|
18 | "config",
|
19 | "shopify",
|
20 | "css"
|
21 | ],
|
22 | "license": "MIT",
|
23 | "bugs": {
|
24 | "url": "https://github.com/shopify/stylelint-config-shopify/issues"
|
25 | },
|
26 | "homepage": "https://github.com/shopify/stylelint-config-shopify",
|
27 | "eslintConfig": {
|
28 | "extends": [
|
29 | "plugin:shopify/es5",
|
30 | "plugin:shopify/node"
|
31 | ]
|
32 | },
|
33 | "dependencies": {
|
34 | "merge": "1.2.x",
|
35 | "stylelint-order": "0.7.x",
|
36 | "stylelint-scss": "^2.1.0"
|
37 | },
|
38 | "devDependencies": {
|
39 | "eslint": "^4.8.0",
|
40 | "eslint-plugin-shopify": "^17.1.0"
|
41 | },
|
42 | "peerDependencies": {
|
43 | "stylelint": ">=8.0 <=8.1"
|
44 | },
|
45 | "optionalDependencies": {
|
46 | "prettier-stylelint-formatter": "^0.5.0"
|
47 | }
|
48 | }
|