-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
{
"name": "comphy-lab-website",
"version": "1.0.0",
"description": "CoMPhy Lab Website - A Jekyll-based static site",
"main": "index.js",
"scripts": {
"lint:js": "eslint assets/js/**/*.js",
"lint:css": "stylelint 'assets/css/**/*.css'",
"lint:md": "markdownlint-cli2 --config .markdownlint-cli2.jsonc",
"lint": "npm run lint:js && npm run lint:css && npm run lint:md",
"format": "prettier --write assets/js/**/*.js assets/css/**/*.css",
"prepare": "npx husky install",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/comphy-lab/comphy-lab.github.io.git"
},
"keywords": [
"jekyll",
"static-site",
"comphy-lab",
"fluid-dynamics"
],
"author": "CoMPhy Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/comphy-lab/comphy-lab.github.io/issues"
},
"homepage": "https://comphy-lab.org",
"devDependencies": {
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.0",
"markdownlint-cli2": "^0.18.1",
"prettier": "^3.1.1",
"stylelint": "^16.1.0",
"stylelint-config-standard": "^36.0.0"
},
"overrides": {
"form-data": "^4.0.4",
"js-yaml": ">=4.1.1"
}
}