-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.45 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.45 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
{
"name": "@laserfiche/lf-ui-components-services",
"version": "18.1.0",
"description": "A library for services that interact with the Laserfiche API and can be used by lf-ui-components",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"test": "jest",
"test:ci": "npm run test -- --watchAll=false --reporters=default --reporters=jest-junit",
"lint": "eslint",
"build": "tsc",
"generate-doc": "npx typedoc@0.28.17 src/index.ts --out ./doc --excludePrivate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Laserfiche/lf-ui-components-services.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.19.1",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"peerDependencies": {
"@laserfiche/lf-js-utils": "^4.0.13",
"@laserfiche/lf-repository-api-client-v2": "^1.0.9",
"@laserfiche/types-lf-ui-components": "^18.0.7"
},
"publishConfig": {
"access": "public"
}
}