-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 3.33 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
{
"name": "@inrupt/solid-client-errors",
"description": "An RFC9457 Problem Details handling library.",
"version": "0.0.2",
"scripts": {
"build": "rollup --config rollup.config.mjs",
"docs:clean": "cd docs/api; make clean-all",
"docs:install": "cd docs/api; pip install -r https://raw.githubusercontent.com/inrupt/docs-assets/main/requirements/api/requirements.txt",
"docs:build": "typedoc && cd docs/api && make html dist",
"docs:preview": "python3 -m http.server --bind 127.0.0.1 --directory docs/dist",
"check-licenses": "license-checker --production --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 && npm run lint:prettier -- --check",
"lint:eslint": "eslint --config .eslintrc.js \"src/\"",
"lint:prettier": "prettier \"{src,e2e}/**/*.{ts,tsx,js,jsx,css}\" \"**/*.{md,mdx,yml}\"",
"prepublishOnly": "npm run build",
"test": "jest --ignoreProjects e2e-node --passWithNoTests",
"test:unit:browser": "jest --selectProjects browser",
"test:unit:node": "jest --selectProjects node",
"test:e2e:node": "jest --selectProjects e2e-node --testTimeout 30000 --collectCoverage false",
"test:e2e": "npm run test:e2e:node && npm run test:e2e:browser",
"test:e2e:browser": "playwright test",
"test:e2e:browser:build": "cd e2e/browser/test-app && npm ci"
},
"homepage": "https://docs.inrupt.com/client-libraries/solid-client-errors-js/",
"bugs": "https://github.com/inrupt/solid-client-errors-js/issues",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/inrupt/solid-client-errors-js.git"
},
"devDependencies": {
"@inrupt/base-rollup-config": "^3.2.4",
"@inrupt/eslint-config-lib": "^3.2.4",
"@inrupt/internal-playwright-helpers": "^3.2.4",
"@inrupt/internal-test-env": "^3.2.1",
"@inrupt/jest-jsdom-polyfills": "^3.2.4",
"@inrupt/solid-client-authn-node": "^2.3.0",
"@playwright/test": "^1.49.1",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typhonjs-typedoc/ts-lib-docs": "^2024.12.25",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-config-next": "^15.1.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-playwright": "^2.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.4.2",
"rollup": "^4.29.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.6",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.7.2"
},
"engines": {
"node": "^18.0.0 || ^20.0.0 || ^22.0.0"
}
}