-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "stylelint-config-css-modules",
"version": "4.4.0",
"description": "CSS modules shareable config for stylelint",
"keywords": [
"stylelint",
"stylelint-config",
"css-modules"
],
"author": {
"name": "Pascal Duez",
"url": "https://github.com/pascalduez"
},
"homepage": "https://github.com/pascalduez/stylelint-config-css-modules",
"bugs": "https://github.com/pascalduez/stylelint-config-css-modules/issues",
"repository": {
"type": "git",
"url": "git://github.com/pascalduez/stylelint-config-css-modules.git"
},
"license": "Unlicense",
"type": "module",
"main": "./dist/index.cjs",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"files": [
"CHANGELOG.md",
"dist/**/*.js",
"dist/**/*.cjs",
"README.md",
"UNLICENSE"
],
"scripts": {
"format:check": "prettier -l \"**/*.{js,css,scss}\"",
"format:write": "prettier --write \"**/*.{js,scss,css}\"",
"test": "node --test",
"build": "rollup -c",
"prepare": "pnpm build"
},
"packageManager": "[email protected]+sha512.1f79bc245a66eb0b07c5d4d83131240774642caaa86ef7d0434ab47c0d16f66b04e21e0c086eb61e62c77efc4d7f7ec071afad3796af64892fae66509173893a",
"devDependencies": {
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"rollup": "^4.30.1",
"stylelint": "^16.13.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-config-standard-scss": "^14.0.0"
},
"peerDependencies": {
"stylelint": "^14.5.1 || ^15.0.0 || ^16.0.0"
},
"optionalDependencies": {
"stylelint-scss": "^6.10.0"
}
}