-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 4.37 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
{
"private": true,
"repository": "https://github.com/maartyman/incremunica/",
"workspaces": [
"engines/*",
"packages/*"
],
"devDependencies": {
"rdf-terms": "^1.9.1",
"sparqlalgebrajs": "^4.0.5",
"@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",
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.2",
"@types/jest": "^29.0.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",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "^5.43.0",
"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.27.0",
"eslint-config-es": "4.2.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-extended": "0.2.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "26.9.0",
"eslint-plugin-mocha": "9.0.0",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-tsdoc": "0.2.17",
"eslint-plugin-unicorn": "37.0.1",
"eslint-plugin-unused-imports": "2.0.0",
"event-emitter-promisify": "^1.1.0",
"jest": "^29.0.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": "^6.0.3",
"lerna-script": "^1.4.0",
"manual-git-changelog": "^1.0.2",
"memory-streams": "^0.1.3",
"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-test-suite": "^1.19.3",
"rdf-test-suite-ldf": "^1.4.2",
"setup-polly-jest": "^0.11.0",
"stream-to-string": "^1.2.0",
"streamify-array": "^1.0.1",
"streamify-string": "^1.0.1",
"ts-jest": "^29.0.0",
"ts-loader": "^9.4.1",
"typedoc": "^0.25.0",
"typescript": "^5.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"ws": "^8.14.2",
"@comunica/jest": "^2.10.0"
},
"pre-commit": [
"build",
"lint",
"depcheck",
"test",
"test-browser"
],
"scripts": {
"pre-commit": "yarn run build && yarn run lint-no-cache && yarn run depcheck && yarn run test-browser && yarn run test",
"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-no-cache": "eslint . --ext .ts",
"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 install && yarn pre-commit && yarn publish-release",
"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": "typedoc",
"postinstall": "yarn run build && lerna run prepare",
"version": "manual-git-changelog onversion",
"depcheck": "lerna-script depcheckTask",
"depcheck-fix": "lerna-script depfixTask"
},
"resolutions": {
"@rdfjs/types": "1.1.0"
},
"dependencies": {}
}