forked from comunica/comunica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 4.56 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
{
"private": true,
"repository": "https://github.com/comunica/comunica/",
"workspaces": [
"engines/*",
"packages/*"
],
"devDependencies": {
"@types/benchmark": "^2.0.0",
"benchmark": "^2.1.4",
"@babel/core": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@pollyjs/adapter-node-http": "^6.0.5",
"@pollyjs/core": "^6.0.5",
"@pollyjs/persister-fs": "^6.0.5",
"@rubensworks/eslint-config": "^2.0.0",
"@types/jest": "^29.4.0",
"@types/node": "^20.0.0",
"@types/object-inspect": "^1.8.1",
"@types/readable-stream": "^4.0.0",
"@types/setup-polly-jest": "^0.5.2",
"abort-controller": "^3.0.0",
"arrayify-stream": "^2.0.1",
"asynciterator": "^3.8.1",
"babel-loader": "^9.1.0",
"componentsjs-generator": "^3.1.0",
"depcheck": "^1.4.3",
"eslint": "^8.48.0",
"jest": "^29.5.0",
"jest-mock": "^29.3.1",
"jest-rdf": "^1.7.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.4.0",
"karma-webpack": "^5.0.0",
"lerna": "^7.3.0",
"lerna-script": "^1.4.0",
"manual-git-changelog": "^1.0.2",
"node-polyfill-webpack-plugin": "^3.0.0",
"nodemon": "^3.0.0",
"npm-check-updates": "^16.4.1",
"pre-commit": "^1.2.2",
"rdf-data-factory": "^1.1.1",
"rdf-quad": "^1.5.0",
"rdf-stores": "^1.0.0",
"rdf-test-suite": "^1.25.0",
"rdf-test-suite-ldf": "^1.5.0",
"setup-polly-jest": "^0.11.0",
"sparqlalgebrajs": "^4.2.0",
"stream-to-string": "^1.2.0",
"streamify-array": "^1.0.1",
"streamify-string": "^1.0.1",
"ts-jest": "^29.0.5",
"ts-loader": "^9.4.1",
"typedoc": "^0.25.0",
"typescript": "^5.2.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"pre-commit": [
"build",
"lint",
"test"
],
"scripts": {
"test-changed": "lerna run test --since HEAD",
"build-changed": "lerna run build --since HEAD",
"test": "jest",
"test:ci": "jest --ci --maxWorkers=4 --coverage",
"test:browser": "karma start karma.config.js --single-run",
"lint": "eslint . --ext .ts --cache",
"lint-fix": "eslint . --ext .ts --fix",
"build": "npm run build:ts && npm run build:components",
"build:ts": "tsc",
"build:components": "componentsjs-generator engines/* packages/*",
"build-watch": "nodemon -e ts --ignore '*.d.ts' --exec yarn run build",
"build-watch:ts": "tsc --watch",
"build-watch:components": "nodemon -e d.ts --exec yarn run build:components",
"publish": "yarn run build",
"publish-release": "lerna publish",
"publish-bare": "lerna exec -- npm publish --silent",
"publish-canary": "yarn run build && lerna version prerelease --preid alpha.$(.github/get-next-alpha-version.sh) --exact --ignore-scripts --force-publish --no-push --no-git-tag-version --yes && git update-index --assume-unchanged $(git ls-files | tr '\\n' ' ') && lerna publish from-package --no-git-reset --pre-dist-tag next --force-publish --no-push --no-git-tag-version --yes && git update-index --no-assume-unchanged $(git ls-files | tr '\\n' ' ') && git checkout .",
"doc": "./.github/typedoc-json.sh create && typedoc && ./.github/typedoc-json.sh remove",
"preinstall": "node -e \"if (!fs.existsSync('packages/runner-cli/bin/run.js')) { var os = fs.createWriteStream('packages/runner-cli/bin/run.js'); os.write('#!/usr/bin/env node\\nconsole.error(\\'Temporary runner script during lerna installation. If you see this, please run yarn install again.\\');\\nprocess.exit(1);'); os.end(); }\" && node -e \"if (!fs.existsSync('packages/runner/bin/compile-config.js')) { var os = fs.createWriteStream('packages/runner/bin/compile-config.js'); os.write('#!/usr/bin/env node\\nconsole.error(\\'Temporary compile-config script during lerna installation. If you see this, please run yarn install again.\\');\\nprocess.exit(1);'); os.end(); }\"",
"postinstall": "yarn run build && lerna run prepare",
"version": "manual-git-changelog onversion",
"depcheck": "lerna-script depcheckTask",
"depcheck:fix": "lerna-script depfixTask",
"ncu:all": "lerna-script updateTask",
"ncu:major:all": "lerna-script updateTaskMajor",
"clean": "git status --untracked-files=all --ignored=traditional | grep \"^[^a-z]*packages/[^/]*/lib/\" | grep \"\\.\\(\\(js\\)\\|\\(d\\.ts\\)\\|\\(js\\.map\\)\\)$\" | xargs rm && git status --untracked-files=all --ignored=traditional | grep \"^[^a-z]*packages/[^/]*/components/\" | xargs rm"
},
"resolutions": {
"@rdfjs/types": "1.1.0"
}
}