-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 1.73 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "stylelint-config-prettier-scss",
"version": "1.0.0",
"description": "Turns off all SCSS rules that are unnecessary or might conflict with Prettier.",
"keywords": [
"stylelint",
"prettier",
"config",
"lint",
"css"
],
"repository": "prettier/stylelint-config-prettier-scss",
"license": "MIT",
"author": "Shannon Moeller <[email protected]>",
"contributors": [
"Corentin Tenret <[email protected]>",
"Jordan Hawker <[email protected]>"
],
"type": "commonjs",
"main": "src/index.js",
"bin": {
"stylelint-config-prettier-scss": "bin/check.js",
"stylelint-config-prettier-scss-check": "bin/check.js"
},
"scripts": {
"cover": "npx c8 npm test",
"lint": "npx eslint --fix \"**/*.js\" && npx prettier --write \"**/*.js\"",
"test": "node test/checker.js"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"env": {
"node": true
},
"parserOptions": {
"ecmaVersion": "latest"
},
"extends": "eslint:recommended"
},
"devDependencies": {
"@release-it-plugins/lerna-changelog": "^5.0.0",
"release-it": "^15.5.0",
"stylelint": "^15.6.1",
"stylelint-config-recommended-scss": "^11.0.0"
},
"peerDependencies": {
"stylelint": ">=15.0.0"
},
"engines": {
"node": "14.* || 16.* || >= 18"
},
"volta": {
"node": "18.16.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"@release-it-plugins/lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": false
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}