@fr0st/stylelint-config 2.0.1 → 2.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +19 -20
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  [![npm downloads](https://img.shields.io/npm/dm/%40fr0st/stylelint-config)](https://www.npmjs.com/package/@fr0st/stylelint-config)
6
6
  [![License](https://img.shields.io/npm/l/%40fr0st/stylelint-config)](./LICENSE)
7
7
 
8
- Stylelint shareable config for the Frost style.
8
+ Stylelint shareable config for the *Frost* style.
9
9
 
10
10
 
11
11
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fr0st/stylelint-config",
3
- "version": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "Stylelint shareable config for the Frost style.",
5
5
  "keywords": [
6
6
  "code",
@@ -15,9 +15,15 @@
15
15
  "url": "https://github.com/elusivecodes/Stylelint-Config/issues",
16
16
  "email": "elusivecodes@gmail.com"
17
17
  },
18
- "main": "index.js",
19
- "exports": "./index.js",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/elusivecodes/Stylelint-Config.git"
21
+ },
22
+ "license": "MIT",
23
+ "author": "Elusive <elusivecodes@gmail.com>",
20
24
  "type": "module",
25
+ "exports": "./index.js",
26
+ "main": "index.js",
21
27
  "files": [
22
28
  "index.js",
23
29
  "LICENSE",
@@ -28,30 +34,23 @@
28
34
  "smoke": "stylelint --config ./index.js ./test/fixtures/smoke.css ./test/fixtures/smoke.scss",
29
35
  "test": "npm run lint && npm run smoke"
30
36
  },
31
- "repository": {
32
- "type": "git",
33
- "url": "git+https://github.com/elusivecodes/Stylelint-Config.git"
34
- },
35
- "author": "Elusive <elusivecodes@gmail.com>",
36
- "license": "MIT",
37
- "private": false,
38
- "publishConfig": {
39
- "access": "public"
40
- },
41
- "engines": {
42
- "node": ">=20.19.0"
43
- },
44
37
  "dependencies": {
45
38
  "@stylistic/stylelint-config": "^4.0.0",
46
39
  "stylelint-config-recess-order": "^7.7.0",
47
40
  "stylelint-config-standard": "^40.0.0",
48
41
  "stylelint-config-standard-scss": "^17.0.0"
49
42
  },
50
- "peerDependencies": {
43
+ "devDependencies": {
44
+ "@fr0st/eslint-config": "^2.0.4",
51
45
  "stylelint": "^17.4.0"
52
46
  },
53
- "devDependencies": {
54
- "@fr0st/eslint-config": "^2.0.2",
47
+ "peerDependencies": {
55
48
  "stylelint": "^17.4.0"
49
+ },
50
+ "engines": {
51
+ "node": ">=20.19.0"
52
+ },
53
+ "publishConfig": {
54
+ "access": "public"
56
55
  }
57
- }
56
+ }