-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 3.27 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
{
"private": true,
"repository": "https://github.com/comunica/comunica-feature-versioning/",
"workspaces": [
"engines/*",
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"@comunica/jest": "^2.4.0",
"rdf-data-factory": "^1.1.0",
"@types/jest": "^29.0.0",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"arrayify-stream": "^2.0.0",
"asynciterator": "^3.0.3",
"babel-loader": "^9.0.0",
"componentsjs-generator": "^3.0.1",
"eslint": "^8.3.0",
"eslint-config-es": "4.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-extended": "0.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-mocha": "10.0.3",
"eslint-plugin-react": "7.29.4",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-unicorn": "37.0.1",
"eslint-plugin-unused-imports": "^2.0.0",
"immutable": "^4.0.0",
"cross-fetch": "^3.0.5",
"jest": "^29.0.0",
"jest-rdf": "^1.7.0",
"lerna": "^5.0.0",
"lodash.assign": "^4.2.0",
"manual-git-changelog": "^1.0.0",
"node-polyfill-webpack-plugin": "^2.0.0",
"pre-commit": "^1.2.2",
"rdf-quad": "^1.5.0",
"sparqlalgebrajs": "^4.0.0",
"stream-to-string": "^1.1.0",
"streamify-array": "^1.0.0",
"streamify-string": "^1.0.1",
"ts-jest": "^28.0.0",
"typedoc": "^0.21.0",
"@strictsoftware/typedoc-plugin-monorepo": "^0.4.2",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"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",
"lint": "eslint . --ext .ts --cache",
"lint-fix": "eslint . --ext .ts --fix",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"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": "typedoc",
"postinstall": "yarn run build && lerna run prepare",
"version": "manual-git-changelog onversion"
},
"resolutions": {
"@types/yargs": "17.0.13",
"@types/node": "18.0.0"
}
}