-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.49 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
{
"name": "@justindfuller/justindfuller.com",
"version": "0.0.0",
"description": "My website",
"main": "main.js",
"scripts": {
"preformat": "chalk grey 'Begin formatting css html webmanifest'",
"format": "prettier --log-level=error --write **/*.css **/*.html **/*.webmanifest",
"prelint:js": "chalk grey 'Begin linting JS files'",
"lint:js": "eslint -c eslint.config.mjs --quiet --fix './**/*.js'",
"prelint:css": "chalk grey 'Begin linting CSS files'",
"lint:css": "stylelint --fix **/*.css",
"prelint:md": "chalk grey 'Begin linting markdown files'",
"lint:md": "NODE_OPTIONS='--no-deprecation' markdownlint-cli2 **/*.md \"#node_modules\" --config .markdownlint-cli2.jsonc --fix | sed --expression='s/markdownlint-cli2 v0.11.0 (markdownlint v0.32.1)//g'",
"test": "npm run format && npm run lint:js && npm run lint:css && npm run lint:md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustinDFuller/justindfuller.com.git"
},
"keywords": [],
"author": "Justin Fuller <me@justindfuller.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/JustinDFuller/justindfuller.com/issues"
},
"private": true,
"homepage": "https://github.com/JustinDFuller/justindfuller.com#readme",
"devDependencies": {
"chalk": "^5.3.0",
"chalk-cli": "^5.0.1",
"eslint": "^9.16.0",
"markdownlint-cli2": "^0.15.0",
"prettier": "^3.4.2",
"stylelint": "^16.11.0",
"stylelint-config-standard": "^36.0.1"
}
}