forked from LinkedSoftwareDependencies/Components.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.55 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "componentsjs",
"version": "5.4.2",
"description": "A semantic dependency injection framework",
"lsd:contexts": {
"https://linkedsoftwaredependencies.org/bundles/npm/componentsjs/^5.0.0/components/context.jsonld": "components/context.jsonld"
},
"main": "index.js",
"bin": {
"componentsjs-compile-config": "./bin/compile-config.js"
},
"typings": "index",
"repository": "https://github.com/LinkedSoftwareDependencies/Components.js",
"keywords": [
"lsd",
"linked software dependencies",
"components",
"dependency injection"
],
"author": "Ruben Taelman <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": ">=18.12"
},
"scripts": {
"test": "yarn test:jest && yarn test:webpack",
"test:jest": "jest",
"test:webpack": "yarn test:webpack:node && yarn test:webpack:web",
"test:webpack:node": "webpack -c test/webpack/webpack.config.js && node test/webpack/build/test.min.js",
"test:webpack:web": "webpack -c test/webpack/webpack.config-web.js && node test/webpack/build-web/test.min.js",
"test-watch": "jest --watch",
"build": "scopy ./components/context.jsonld ./components/context.json && tsc && chmod +x ./bin/compile-config.js",
"build-watch": "tsc --watch",
"lint": "eslint . --ext .ts --cache",
"validate": "yarn info",
"postinstall": "yarn build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@rdfjs/types": "*",
"@types/minimist": "^1.2.0",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.4",
"jsonld-context-parser": "^2.1.1",
"minimist": "^1.2.0",
"rdf-data-factory": "^1.1.0",
"rdf-object": "^1.14.0",
"rdf-parse": "^2.0.0",
"rdf-quad": "^1.5.0",
"rdf-string": "^1.6.0",
"rdf-terms": "^1.7.0",
"semver": "^7.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"@rubensworks/eslint-config": "^1.0.1",
"@types/jest": "^29.0.0",
"@types/stream-to-array": "^2.3.0",
"@types/streamify-string": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^7.12.1",
"eslint-config-es": "3.25.3",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.0.0",
"jest-mock": "^29.0.0",
"jest-rdf": "^1.8.0",
"jshint": "^2.1.10",
"manual-git-changelog": "^1.0.1",
"n3": "^1.11.1",
"node-polyfill-webpack-plugin": "^3.0.0",
"pre-commit": "^1.2.2",
"simple-copy": "^2.2.1",
"stream-to-array": "^2.3.0",
"streamify-string": "^1.0.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.1",
"typescript": "^5.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"files": [
"components",
"lib/**/*.d.ts",
"lib/**/*.js",
"bin/**/*.d.ts",
"bin/**/*.js",
"index.d.ts",
"index.js"
],
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "/test/.*-test.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"moduleDirectories": [
"node_modules",
"lib",
"test"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}