-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
69
70
71
72
73
74
{
"name": "@talend/json-schema-form-core",
"version": "2.1.1",
"description": "JSON-Schema and JSON-UI-Schema utilities for form generation.",
"main": "dist/index.js",
"module": "./lib-esm/index.js",
"exports": {
".": {
"import": "./lib-esm/index.js",
"require": "./lib/index.js"
}
},
"scripts": {
"build:lib": "talend-scripts build",
"build:lib:esm": "talend-scripts build --esm",
"lint": "eslint -o eslint-report.json --format json .",
"watch": "webpack --watch",
"dist-untested": "webpack --config webpack.config.dist.js",
"test:cov": "vitest run --coverage",
"test": "vitest run",
"test:update": "vitest run --update"
},
"author": "json-schema-form",
"contributors": [
"David Jensen <david.lgj@gmail.com> (https://github.com/davidlgj)",
"Marcel J Bennett <iamanthropic@gmail.com> (https://github.com/Anthropic)"
],
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/Talend/ui/master/LICENSE"
}
],
"homepage": "https://github.com/Talend/ui#readme",
"bugs": {
"url": "https://github.com/Talend/ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"keywords": [
"angular-schema-form",
"json-schema-form-core",
"json-schema-form",
"json-ui-schema",
"json-schema"
],
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"@talend/babel-plugin-assets-api": "^1.9.1",
"@talend/babel-plugin-import-from-index": "^1.13.1",
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@talend/scripts-config-typescript": "^12.1.1",
"@talend/scripts-core": "^20.0.0",
"@types/chai": "^3.5.2",
"@types/node": "^6.14.13",
"eslint": "^10.0.3",
"rimraf": "^6.1.2",
"vitest": "^4.0.18",
"webpack": "^5.104.1"
},
"dependencies": {
"json-refs": "3.0.15",
"objectpath": "^1.2.2",
"tv4": "^1.3.0"
},
"publishConfig": {
"access": "public"
}
}