This repository was archived by the owner on Mar 29, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.91 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.91 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@culur/stylelint-config",
"version": "1.3.0",
"description": "Sharing Stylelint configurations",
"repository": {
"type": "git",
"url": "git+https://github.com/culur/stylelint-config.git"
},
"bugs": {
"url": "https://github.com/culur/stylelint-config/issues"
},
"homepage": "https://github.com/culur/stylelint-config#readme",
"author": "Phạm Hồng Phúc <phamhongphuc.info@gmail.com>",
"license": "MIT",
"keywords": [
"config",
"stylelint"
],
"main": "build/index.js",
"typings": "build/index.d.ts",
"files": [
"build",
"!**/*.test.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"build": "run-s 'build:*'",
"build:tsc": "tsc",
"build:babel": "babel build --out-dir build --source-maps inline",
"clean": "run-s clean:*",
"clean:build": "rimraf build",
"fix": "run-s 'fix:*'",
"fix:md": "markdownlint **/*.md --fix",
"fix:css": "stylelint **/*.{vue,tsx,css,scss} --allow-empty-input --fix",
"fix:prettier": "prettier ** --write --ignore-path node_modules/@culur/prettier-config/.prettierignore",
"test": "run-s 'test:*'",
"test:md": "markdownlint **/*.md",
"test:css": "stylelint **/*.{vue,tsx,css,scss} --allow-empty-input",
"test:prettier": "prettier ** --list-different --ignore-path node_modules/@culur/prettier-config/.prettierignore",
"test:spelling": "cspell **",
"release": "semantic-release",
"release:dry": "dotenv semantic-release --dry-run"
},
"packageManager": "yarn@3.6.4",
"engines": {
"node": ">=18.18.2"
},
"dependencies": {
"postcss-html": "^1.5.0",
"postcss-sass": "^0.5.0",
"postcss-scss": "^4.0.9",
"stylelint-config-html": "^1.1.0",
"stylelint-config-hudochenkov": "^9.0.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard": "^34.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-order": "^6.0.3",
"stylelint-scss": "^5.2.1"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@cspell/dict-vi-vn": "^3.0.0",
"@culur/prettier-config": "^1.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@types/node": "^20.8.7",
"babel-plugin-module-resolver": "^5.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cspell": "^7.3.8",
"cz-conventional-changelog": "^3.3.0",
"dotenv-cli": "^7.3.0",
"markdownlint-cli": "^0.37.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"semantic-release": "^22.0.5",
"stylelint": "^15.11.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"stylelint": ">=15.11.0"
},
"resolutions": {
"npm/chalk": "^5.3.0"
}
}