forked from inrupt/solid-client-authn-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.81 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.81 KB
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
{
"name": "root",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/core",
"packages/webext"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"clean": "rimraf packages/*/dist/ packages/*/node_modules/ packages/*/coverage/ packages/*/umd/",
"format-all": "prettier --write \"packages/*/src/**\"",
"audit-all": "lerna-audit --audit-level=moderate",
"licenses:check": "lerna run licenses:check && license-checker --production --out license.csv --failOn \"AGPL-1.0-only; AGPL-1.0-or-later; AGPL-3.0-only; AGPL-3.0-or-later; Beerware; CC-BY-NC-1.0; CC-BY-NC-2.0; CC-BY-NC-2.5; CC-BY-NC-3.0; CC-BY-NC-4.0; CC-BY-NC-ND-1.0; CC-BY-NC-ND-2.0; CC-BY-NC-ND-2.5; CC-BY-NC-ND-3.0; CC-BY-NC-ND-4.0; CC-BY-NC-SA-1.0; CC-BY-NC-SA-2.0; CC-BY-NC-SA-2.5; CC-BY-NC-SA-3.0; CC-BY-NC-SA-4.0; CPAL-1.0; EUPL-1.0; EUPL-1.1; EUPL-1.1; GPL-1.0-only; GPL-1.0-or-later; GPL-2.0-only; GPL-2.0-or-later; GPL-3.0; GPL-3.0-only; GPL-3.0-or-later; SISSL; SISSL-1.2; WTFPL\"",
"lint": "npm run lint:check",
"lint:fix": "npm run lint:eslint -- --fix",
"lint:check": "npm run lint:eslint",
"lint:eslint": "eslint --config eslint.config.mjs .",
"postinstall": "npm run build",
"prepublishOnly": "npm run build",
"publish": "lerna publish --no-private",
"test": "npm run test:unit:webext",
"test:unit:all": "jest --coverage --verbose",
"test:unit:webext": "jest --coverage --verbose --selectProjects webext",
"test:unit:core": "jest --coverage --verbose --selectProjects core",
"test:esbuild": "lerna run test:esbuild",
"lerna-version": "lerna version --no-push --no-git-tag-version --no-private"
},
"devDependencies": {
"@inrupt/base-rollup-config": "^4.1.0",
"@inrupt/eslint-config-base": "^4.1.0",
"@inrupt/internal-test-env": "^4.1.0",
"@inrupt/jest-jsdom-polyfills": "^4.1.0",
"@inrupt/solid-client": "^3.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/dotenv-flow": "^3.3.3",
"@types/http-link-header": "^1.0.7",
"@types/jest": "^29.5.14",
"dotenv-flow": "^4.0.1",
"eslint": "^9.28.0",
"eslint-config-next": "^16.2.1",
"http-link-header": "^1.1.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-mock-console": "^1.2.3",
"lerna": "^9.0.7",
"lerna-audit": "^1.3.3",
"license-checker": "^25.0.1",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"rollup": "^4.22.4",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.18",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.9.3"
},
"optionalDependencies": {
"@nx/nx-win32-x64-msvc": "^22.6.3",
"fsevents": "^2.3.2"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
}
}