-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
97 lines (97 loc) · 2.45 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": "componentsjs-generator",
"version": "4.3.0",
"packageManager": "[email protected]",
"description": "Automatically generate component files from TypeScript classes for the Components.js dependency injection framework",
"author": "Ruben Taelman <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/LinkedSoftwareDependencies/Components-Generator.js#readme",
"repository": "[email protected]:LinkedSoftwareDependencies/Components-Generator.js.git",
"bugs": {
"url": "https://github.com/LinkedSoftwareDependencies/Components-Generator.js/issues"
},
"keywords": [
"lsd",
"linked software dependencies",
"components",
"dependency injection",
"typescript"
],
"main": "index.js",
"bin": "bin/componentsjs-generator.js",
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"index.d.ts",
"index.ts",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.json"
],
"engines": {
"node": ">=18.12"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint . --cache",
"prepare": "husky install && yarn build",
"version": "manual-git-changelog onversion"
},
"jest": {
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.test.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"test"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"@types/lru-cache": "^5.1.0",
"@types/semver": "^7.3.4",
"@typescript-eslint/typescript-estree": "^7.1.0",
"comment-parser": "^0.7.6",
"componentsjs": "^6.2.0",
"jsonld-context-parser": "^3.0.0",
"lru-cache": "^6.0.0",
"minimist": "^1.2.5",
"rdf-object": "^2.0.0",
"semver": "^7.3.2"
},
"devDependencies": {
"@rubensworks/eslint-config": "^3.0.0",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/minimist": "^1.2.0",
"@types/node": "^22.0.0",
"@types/rimraf": "^3.0.0",
"eslint": "^8.57.0",
"fs-extra": "^11.0.0",
"husky": "^9.0.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"manual-git-changelog": "^1.0.1",
"rimraf": "latest",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}