-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "@pixelattack/pixelattack-styles",
"version": "1.0.6",
"description": "SCSS boilerplate",
"main": "main.scss",
"repository": {
"type": "git",
"url": "git+https://github.com/apsuhos/pixelattack-styles.git"
},
"bugs": {
"url": "https://github.com/apsuhos/pixelattack-styles/issues"
},
"homepage": "https://github.com/apsuhos/pixelattack-styles#readme",
"scripts": {
"test": "echo \"No test specified\"",
"lint:check": "stylelint \"**/*.scss\"",
"lint": "stylelint \"**/*.scss\" --fix",
"format:check": "prettier --check \"**/*.{scss,json}\"",
"format": "prettier --write \"**/*.{scss,json}\"",
"prepare": "husky"
},
"lint-staged": {
"**/*.{css,scss}": "npm run lint && npm run format"
},
"author": "Konstantinos Antoniadis",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"stylelint": "^16.3.1",
"stylelint-config-sass-guidelines": "^11.1.0",
"stylelint-config-standard-scss": "^13.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"cz-conventional-commit": {
"maxSubjectLength": 72,
"bodyLineLength": 100,
"emoji": false
}
}
},
"publishConfig": {
"access": "public"
}
}