-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.75 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
{
"name": "forge-update-generator",
"version": "1.1.1",
"description": "Generates Forge update JSON files from CurseForge",
"main": "index.js",
"repository": "[email protected]:CyclopsMC/forge-update-generator.js.git",
"bugs": {
"url": "https://github.com/CyclopsMC/forge-update-generator.js/issues"
},
"bin": {
"forge-update-generator": "bin/generate.js"
},
"homepage": "https://github.com/CyclopsMC/forge-update-generator.js#readme",
"author": "Ruben Taelman <[email protected]>",
"license": "MIT",
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.js",
"index.d.ts",
"index.js"
],
"pre-commit": [
"build",
"lint"
],
"devDependencies": {
"@rubensworks/eslint-config": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.9.0",
"eslint-config-es": "3.28.30",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-unused-imports": "^0.1.3",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"typescript": "^5.0.0"
},
"scripts": {
"lint": "eslint . --ext .ts --cache",
"build": "tsc",
"build-watch": "tsc --watch",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@types/jsdom": "^16.2.6",
"@types/minimist": "^1.2.1",
"@types/node": "^22.2.0",
"@types/puppeteer": "^5.4.2",
"@types/user-agents": "^1.0.0",
"cross-fetch": "^3.0.6",
"jsdom": "^16.4.0",
"minimist": "^1.2.5",
"puppeteer": "^5.5.0",
"user-agents": "^1.0.559"
}
}