-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
{
"name": "stylelint-config-coldfront",
"version": "4.1.1",
"description": "Custom stylelint config used for Coldfront projects.",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"exports": {
".": {
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"index.js",
"dist/"
],
"scripts": {
"prepare": "husky install",
"commit": "git cz",
"lint": "npm run eslint -- --fix && npm run prettier -- --write",
"eslint": "eslint --ext .js,.mjs --ignore-path .gitignore .",
"prettier": "prettier '**/*.{js,mjs}' --ignore-path .gitignore",
"build": "rollup --config rollup.config.mjs",
"release": "git add dist/. && git add index.js && standard-version -a",
"prerelease": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coldfrontlabs/stylelint-config-coldfront.git"
},
"keywords": [
"stylelint",
"stylelint-config"
],
"author": "Coldfront Labs Inc.",
"license": "ISC",
"bugs": {
"url": "https://github.com/coldfrontlabs/stylelint-config-coldfront/issues"
},
"homepage": "https://github.com/coldfrontlabs/stylelint-config-coldfront#readme",
"dependencies": {
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-sass-guidelines": "^10.0.0",
"stylelint-config-standard-scss": "^11.0.0",
"stylelint-prettier": "^4.0.2"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.0.3",
"rollup": "^4.9.2",
"standard-version": "^9.5.0",
"stylelint": "^15.10.3"
},
"peerDependencies": {
"prettier": ">=3.0.0",
"stylelint": ">=15.0.0"
}
}