-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.46 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
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "cyclops-infobook-html",
"version": "4.0.0",
"description": "Output Cyclops infobooks as HTML",
"main": "index.js",
"repository": "[email protected]:CyclopsMC/infobook-html.git",
"bugs": {
"url": "https://github.com/CyclopsMC/infobook-html/issues"
},
"homepage": "https://github.com/CyclopsMC/infobook-html#readme",
"author": "Ruben Taelman <[email protected]>",
"license": "MIT",
"bin": {
"generate-cyclops-infobook-html": "bin/generate-infobook-html.js",
"generate-mod-metadata": "bin/generate-mod-metadata.js"
},
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.js",
"template/**/*.pug",
"assets/**/*",
"index.d.ts",
"index.js"
],
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"devDependencies": {
"@types/jest": "^28.0.0",
"@types/minimist": "^1.2.0",
"coveralls": "^3.0.3",
"jest": "^28.0.0",
"manual-git-changelog": "^1.0.1",
"pre-commit": "^1.2.2",
"ts-jest": "^28.0.0",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^4.0.0"
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "tslint index.ts lib/**/*.ts test/**/*.ts bin/**/*.ts --exclude '**/*.d.ts'",
"build": "tsc",
"build-watch": "tsc --watch",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@types/mkdirp": "^0.5.2",
"@types/ncp": "^2.0.1",
"@types/node": "^13.1.0",
"@types/node-fetch": "^2.5.0",
"@types/pug": "^2.0.4",
"@types/rimraf": "^3.0.0",
"@types/xml2js": "^0.4.4",
"@types/yauzl": "^2.9.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"mvn-artifact-download": "^5.0.0",
"ncp": "^2.0.0",
"node-fetch": "^2.6.0",
"pug": "^3.0.0",
"rimraf": "^3.0.0",
"xml2js": "^0.4.19",
"yauzl": "^2.10.0"
},
"resolutions": {
"@types/istanbul-reports": "3.0.0"
}
}