-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 2.78 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
98
99
100
101
102
103
104
105
106
107
{
"name": "@comake/componentsjs-generator",
"version": "3.1.1",
"description": "Automatically generate component files from TypeScript classes for the Components.js dependency injection framework",
"main": "index.js",
"engines": {
"node": ">=12.0"
},
"scripts": {
"build": "tsc",
"test": "jest ${1}",
"lint": "eslint . --ext .ts --cache",
"prepare": "husky install && npm run build",
"version": "manual-git-changelog onversion"
},
"jest": {
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.test.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"test"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"keywords": [
"lsd",
"linked software dependencies",
"components",
"dependency injection",
"typescript"
],
"author": "Adler Faulkner <[email protected]>",
"repository": "[email protected]:comake/Components-Generator.js.git",
"bugs": {
"url": "https://github.com/comake/Components-Generator.js/issues"
},
"homepage": "https://github.com/comake/Components-Generator.js#readme",
"license": "MIT",
"bin": {
"componentsjs-generator": "bin/componentsjs-generator.js"
},
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.json",
"index.d.ts",
"index.ts"
],
"dependencies": {
"@types/lru-cache": "^5.1.0",
"@types/semver": "^7.3.4",
"@typescript-eslint/typescript-estree": "^5.11.0",
"comment-parser": "^0.7.6",
"componentsjs": "^5.0.1",
"jsonld-context-parser": "^2.1.5",
"lru-cache": "^6.0.0",
"minimist": "^1.2.5",
"rdf-object": "^1.13.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@rubensworks/eslint-config": "^1.0.1",
"@types/fs-extra": "^11.0.0",
"@types/jest": "^29.0.0",
"@types/jsonld": "^1.5.0",
"@types/minimist": "^1.2.0",
"@types/node": "^18.0.0",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^7.9.0",
"eslint-config-es": "3.26.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-unused-imports": "^2.0.0",
"fs-extra": "^11.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"jest-extended": "^4.0.0",
"manual-git-changelog": "^1.0.1",
"rimraf": "latest",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0"
}
}