-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.63 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.63 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
{
"name": "vatsal-personal-website",
"version": "1.0.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=22.16.0",
"npm": ">=10.9.2"
},
"description": "Vatsal Sanjay's Personal Website - A Jekyll-based static site",
"main": "index.js",
"scripts": {
"lint:js": "eslint assets/js/**/*.js --ignore-pattern 'assets/js/mathjax/**' --no-warn-ignored",
"lint:css": "stylelint 'assets/css/**/*.css'",
"lint:md": "markdownlint-cli2 '**/*.md' --ignore node_modules",
"lint:md:fix": "markdownlint-cli2 --fix '**/*.md' --ignore node_modules",
"check:node-modules": "./scripts/check-node-modules.sh",
"lint": "npm run lint:js && npm run lint:css && npm run lint:md",
"format": "prettier --write assets/js/**/*.js assets/css/**/*.css",
"prepare": "husky",
"test": "node scripts/simple-test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comphy-lab/VatsalSy/VatsalSy.github.io.git"
},
"keywords": [
"jekyll",
"static-site",
"personal-website",
"fluid-dynamics"
],
"author": "Vatsal Sanjay",
"license": "MIT",
"bugs": {
"url": "https://github.com/comphy-lab/VatsalSy/VatsalSy.github.io/issues"
},
"homepage": "https://comphy-lab.org/vatsalsy",
"overrides": {
"form-data": "4.0.4",
"js-yaml": "4.1.1"
},
"devDependencies": {
"eslint": "^9.39.2",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"markdownlint-cli2": "^0.20.0",
"prettier": "^3.7.4",
"stylelint": "^16.26.1",
"stylelint-config-standard": "^37.0.0"
}
}