-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.95 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
{
"private": true,
"packageManager": "[email protected]",
"repository": "https://github.com/comunica/comunica-feature-solid/",
"workspaces": [
"engines/*",
"packages/*"
],
"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 . --cache",
"clean": "rm -rf ./node_modules && rm -rf ./packages/*/node_modules",
"depcheck": "lerna-script depcheckTask",
"depcheck:fix": "lerna-script depfixTask",
"ncu:all": "lerna-script updateTask",
"ncu:major:all": "lerna-script updateTaskMajor",
"build": "yarn run build:ts && yarn 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",
"prepare": "husky",
"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.$(node_modules/@comunica/utils-monorepo/sh/get-next-alpha-version.sh @comunica/query-sparql-solid) --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": "node_modules/@comunica/utils-monorepo/sh/typedoc-json.sh create && typedoc && node_modules/@comunica/utils-monorepo/sh/typedoc-json.sh remove",
"postinstall": "yarn run build && lerna run prepare",
"version": "manual-git-changelog onversion"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@comunica/utils-jest": "^4.0.2",
"@comunica/utils-monorepo": "^4.0.1",
"@rubensworks/eslint-config": "^3.0.0",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"asynciterator": "^3.2.1",
"babel-loader": "^9.0.0",
"componentsjs-generator": "^4.0.1",
"cross-fetch": "^4.0.0",
"depcheck": "^1.4.3",
"eslint": "^8.57.0",
"husky": "^9.0.0",
"immutable": "^5.0.0",
"jest": "^29.0.0",
"jest-rdf": "^1.7.0",
"lerna": "^8.0.0",
"lerna-script": "^1.4.0",
"manual-git-changelog": "^1.0.0",
"nodemon": "^3.0.0",
"npm-check-updates": "^17.0.0",
"rdf-data-factory": "^1.1.0",
"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": "^29.0.0",
"typedoc": "^0.27.0",
"typescript": "^5.3.3",
"webpack": "^5.64.4",
"webpack-cli": "^6.0.0"
}
}