-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.48 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.48 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
{
"name": "@talend/scripts-core",
"description": "Set of scripts",
"version": "19.0.0",
"license": "Apache-2.0",
"exports": "./src/index.js",
"type": "module",
"bin": {
"talend-scripts": "./src/index.js"
},
"author": "Talend Frontend <frontend@talend.com>",
"homepage": "https://github.com/Talend/ui/tree/master/packages/ui-scripts#readme",
"bugs": {
"url": "https://github.com/Talend/ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"scripts": {
"lint": "eslint -o eslint-report.json --format json .",
"test": "vitest run",
"test:cov": "vitest run"
},
"peerDependencies": {
"@talend/scripts-config-react-webpack": ">=16.0.0"
},
"peerDependenciesMeta": {
"@talend/scripts-config-react-webpack": {
"optional": true
}
},
"dependencies": {
"@babel/cli": "^7.28.6",
"@babel/core": "^7.28.6",
"@talend/eslint-config": "^14.1.1",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-utils": "^2.8.1",
"@talend/scripts-config-babel": "^13.10.1",
"@talend/scripts-config-typescript": "^12.1.1",
"babel-loader": "^9.2.1",
"cpx2": "^8.0.0",
"fs-extra": "^10.1.0",
"lodash": "^4.17.23",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-merge": "^5.10.0",
"yargs": "^15.4.1"
},
"devDependencies": {
"eslint": "^10.0.3",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
}
}