-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.41 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
{
"name": "qwiklabs-catalog-scraper",
"version": "1.0.0",
"description": "Scraping labs and quests from Google Skills Catalog and save as CSV files",
"main": "src/index.js",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"lint": "npm run eslint && npm run prettier",
"eslint": "eslint --ext .js --fix .",
"prettier": "prettier \"**/*.js\" --write --ignore-path .prettierignore",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chriskyfung/qwiklabs-catalog-scraper.git"
},
"bugs": {
"url": "https://github.com/chriskyfung/qwiklabs-catalog-scraper/issues"
},
"homepage": "https://github.com/chriskyfung/qwiklabs-catalog-scraper#readme",
"keywords": [
"userscript",
"qwiklabs",
"web-scraper",
"google-skills",
"cloud-skills"
],
"author": "Chris K.Y. Fung",
"license": "GPL-3.0",
"engines": {
"node": "^18.18.0"
},
"type": "module",
"devDependencies": {
"@vitest/coverage-v8": "^4.0.8",
"eslint": "^10.8.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^63.3.2",
"jsdom": "^27.1.0",
"prettier": "^3.9.6",
"vite": "^7.3.0",
"vite-plugin-monkey": "^7.1.4",
"vitest": "^4.1.10"
}
}