-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
84 lines (84 loc) · 2.88 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "ghs",
"private": true,
"version": "1.17.1",
"description": "Platform used to crawl, store and present projects from GitHub, as well as any statistics related to them.",
"source": "html/index.html",
"type": "module",
"scripts": {
"prepare": "husky",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel minify:*",
"postbuild": "npm-run-all --parallel bundle:*",
"bundle:fonts": "copyfiles -f html/fonts/* dist/fonts",
"bundle:icons": "copyfiles -f html/icons/* dist/icons",
"bundle:splash": "copyfiles -f html/splash/* dist/splash",
"bundle:manifest": "copyfiles -f html/manifest.json dist",
"minify:js": "esbuild html/js/*.js --outdir=dist/js --minify",
"minify:css": "cleancss html/css/main.css --output dist/css/main.css",
"minify:html": "html-minifier-terser --collapse-whitespace --remove-comments --minify-js --process-scripts='[\"text/html\",\"text/x-handlebars-template\"]' html/index.html --output dist/index.html",
"format": "npm-run-all --parallel format:*",
"format:js": "eslint --fix .",
"format:json": "prettier --write --log-level silent **/*.json .*.json",
"format:css": "stylelint --fix --quiet html/css",
"format:md": "markdownlint --fix --quiet *.md",
"format:yml": "prettier --write --log-level silent **/*.yml",
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint .",
"lint:css": "stylelint html/css",
"lint:html": "htmlhint html/*.html",
"lint:md": "markdownlint *.md",
"dev": "nodemon -x 'npm run dev:serve' -w html -e html,css,js",
"dev:serve": "npm run build && http-server dist -a localhost -p 3030"
},
"author": {
"name": "Ozren Dabić",
"email": "[email protected]",
"url": "https://dabico.github.io"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seart-group/ghs.git"
},
"license": "MIT",
"homepage": "https://seart-ghs.si.usi.ch",
"keywords": [
"github",
"sampling",
"search",
"search engine",
"search platform",
"statistics",
"open source",
"open source projects",
"mining software repositories",
"dataset generation",
"csv generation",
"json generation",
"xml generation",
"open source code analysis"
],
"devDependencies": {
"@eslint/js": "^9.14.0",
"clean-css-cli": "^5.6.3",
"copyfiles": "^2.4.1",
"esbuild": "^0.24.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.12.0",
"html-minifier-terser": "^7.2.0",
"htmlhint": "^1.1.4",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"markdownlint": "^0.36.1",
"markdownlint-cli": "^0.42.0",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.2"
}
}