UNPKG

2.91 kBJSONView Raw
1{
2 "name": "stylelint-declaration-block-no-ignored-properties",
3 "description": "Disallow property values that are ignored due to another property value in the same rule.",
4 "version": "2.1.0",
5 "author": {
6 "name": "Krister Kari",
7 "url": "https://github.com/kristerkari/"
8 },
9 "bugs": {
10 "url": "https://github.com/kristerkari/stylelint-declaration-block-no-ignored-properties/issues"
11 },
12 "dependencies": {
13 "postcss": "^7.0.14"
14 },
15 "devDependencies": {
16 "babel-eslint": "^10.0.1",
17 "eslint": "^5.16.0",
18 "eslint-plugin-sort-requires": "^2.1.0",
19 "jest-cli": "^24.7.1",
20 "lint-staged": "^8.1.5",
21 "lodash": "^4.17.11",
22 "npmpub": "^4.1.0",
23 "prettier": "^1.17.0",
24 "stylelint": "^10.0.1"
25 },
26 "peerDependencies": {
27 "stylelint": "^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0"
28 },
29 "engines": {
30 "node": ">=6"
31 },
32 "eslintConfig": {
33 "parser": "babel-eslint",
34 "extends": "eslint:recommended",
35 "parserOptions": {
36 "ecmaVersion": 6
37 },
38 "env": {
39 "es6": true,
40 "jest": true,
41 "node": true
42 },
43 "plugins": [
44 "sort-requires"
45 ],
46 "globals": {
47 "testRule": true
48 },
49 "rules": {
50 "eqeqeq": "error",
51 "no-use-before-define": [
52 "error",
53 "nofunc"
54 ],
55 "sort-requires/sort-requires": "error",
56 "strict": [
57 "error",
58 "global"
59 ],
60 "arrow-spacing": "error",
61 "no-var": "error",
62 "object-shorthand": "error",
63 "prefer-const": "error",
64 "template-curly-spacing": "error"
65 }
66 },
67 "files": [
68 "index.js",
69 "utils",
70 "CHANGELOG.md",
71 "README.md"
72 ],
73 "homepage": "https://github.com/kristerkari/stylelint-declaration-block-no-ignored-properties#readme",
74 "jest": {
75 "clearMocks": true,
76 "collectCoverage": false,
77 "collectCoverageFrom": [
78 "index.js"
79 ],
80 "coverageDirectory": "./coverage/",
81 "coverageReporters": [
82 "lcov",
83 "text"
84 ],
85 "coverageThreshold": {
86 "global": {
87 "branches": 75,
88 "functions": 75,
89 "lines": 75,
90 "statements": 75
91 }
92 },
93 "testEnvironment": "node",
94 "setupFiles": [
95 "./jest-setup.js"
96 ]
97 },
98 "keywords": [
99 "css",
100 "less",
101 "lint",
102 "linter",
103 "scss",
104 "stylelint",
105 "stylelint-plugin",
106 "sugarss"
107 ],
108 "license": "MIT",
109 "lint-staged": {
110 "**/*.{js,json}": [
111 "prettier --write",
112 "git add"
113 ]
114 },
115 "main": "index.js",
116 "repository": {
117 "type": "git",
118 "url": "git+https://github.com/kristerkari/stylelint-declaration-block-no-ignored-properties.git"
119 },
120 "scripts": {
121 "jest": "jest",
122 "lint": "eslint . --ignore-path .gitignore",
123 "precommit": "lint-staged",
124 "pretest": "npm run lint",
125 "prettify": "prettier --write '**/*.{js,json}'",
126 "release": "npmpub",
127 "test": "jest --coverage"
128 }
129}