-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.21 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.21 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
{
"name": "aymuos15.github.io",
"version": "1.0.0",
"description": "This is me.",
"type": "module",
"packageManager": "bun@1.2.22",
"scripts": {
"dev": "bun run dev-server.js",
"lint": "bun run lint:js && bun run lint:css && bun run lint:html",
"lint:js": "eslint dev-server.js \"src/js/**/*.js\" \"src/microblogs/**/*.js\"",
"lint:css": "stylelint \"src/styles/**/*.css\"",
"lint:html": "htmlhint src/index.html",
"lint:fix": "eslint dev-server.js \"src/js/**/*.js\" \"src/microblogs/**/*.js\" --fix && stylelint \"src/styles/**/*.css\" --fix",
"prepare": "husky"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.css": "stylelint --fix",
"*.html": "htmlhint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aymuos15/aymuos15.github.io.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aymuos15/aymuos15.github.io/issues"
},
"homepage": "https://github.com/aymuos15/aymuos15.github.io#readme",
"devDependencies": {
"eslint": "^9.39.2",
"htmlhint": "^1.8.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^39.0.1"
}
}