-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.1 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
{
"private": true,
"repository": "https://github.com/comunica/comunica-feature-amf/",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=8.0"
},
"devDependencies": {
"@comunica/core": "^1.19.0",
"@comunica/bus-query-operation": "^1.19.0",
"@comunica/bus-rdf-dereference": "^1.19.0",
"@comunica/bus-rdf-metadata-extract": "^1.19.0",
"@comunica/bus-rdf-membership-filter": "^1.0.0",
"@rdfjs/data-model": "^2.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"@types/bloem": "^0.2.0",
"@types/murmurhash": "^0.0.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"arrayify-stream": "^3.0.0",
"asynciterator": "^3.0.2",
"babel-loader": "^9.0.0",
"coveralls": "^3.0.0",
"eslint": "^7.9.0",
"eslint-config-es": "3.23.2",
"eslint-plugin-tsdoc": "^0.2.7",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-unused-imports": "^1.0.0",
"immutable": "^5.0.0",
"cross-fetch": "^4.0.0",
"jest": "^29.0.0",
"jest-rdf": "^1.3.0",
"lerna": "^8.0.0",
"lodash.assign": "^4.2.0",
"manual-git-changelog": "^1.0.0",
"pre-commit": "^1.2.2",
"rdf-quad": "^1.3.0",
"sparqlalgebrajs": "^4.0.0",
"stream-to-string": "^1.1.0",
"streamify-array": "^1.0.0",
"streamify-string": "^1.0.1",
"ts-jest": "^29.0.0",
"typedoc": "^0.27.0",
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.0",
"typescript": "^5.0.0",
"uglifyjs-webpack-plugin": "^2.1.1",
"webpack": "^5.0.0",
"webpack-cli": "^6.0.0"
},
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"setupFilesAfterEnv": [ "./setup-jest.js" ],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/mocks/",
"index.js"
],
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"scripts": {
"test-changed": "lerna run test --since HEAD",
"build-changed": "lerna run build --since HEAD",
"test": "jest",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"test-ci": "jest --ci --maxWorkers=4 --coverage",
"coveralls-ci": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint . --ext .ts --cache",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"build": "tsc",
"build-watch": "tsc --watch",
"publish": "yarn run build && lerna publish",
"publish-bare": "lerna exec -- npm publish --silent",
"doc": "typedoc --name 'Comunica AMF' --disableOutputCheck --external-modulemap '.*packages/([^/]+)/.*' --mode modules --out documentation",
"postinstall": "yarn run build && lerna run prepare",
"version": "manual-git-changelog onversion"
}
}