-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.92 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.92 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "componentsjs-generator",
"version": "4.3.0",
"packageManager": "yarn@4.7.0",
"description": "Automatically generate component files from TypeScript classes for the Components.js dependency injection framework",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/LinkedSoftwareDependencies/Components-Generator.js#readme",
"repository": "git@github.com: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": "lib/index.js",
"bin": "bin/componentsjs-generator.js",
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.json"
],
"engines": {
"node": ">=18.12"
},
"scripts": {
"build": "tsc",
"test": "jest --maxWorkers=50%",
"lint": "eslint . --cache",
"prepare": "husky && yarn build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@types/semver": "^7.0.0",
"@typescript-eslint/typescript-estree": "^7.1.0",
"comment-parser": "^1.4.0",
"componentsjs": "^6.3.0",
"jsonld-context-parser": "^3.0.0",
"lru-cache": "^11.0.0",
"minimist": "^1.2.0",
"rdf-object": "^2.0.0",
"semver": "^7.0.0"
},
"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": "^24.0.0",
"@types/rimraf": "^4.0.0",
"eslint": "^8.0.0",
"fs-extra": "^11.0.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"jest-extended": "^7.0.0",
"manual-git-changelog": "^1.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"typescript": "^5.0.0"
}
}