-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "@talend/assets-api",
"description": "A set of API designed to access assets using CDN",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"module": "./lib-esm/index.js",
"exports": {
".": {
"import": "./lib-esm/index.js",
"require": "./lib/index.js"
}
},
"license": "Apache-2.0",
"scripts": {
"build:lib": "talend-scripts build",
"build:lib:esm": "talend-scripts build --esm",
"start": "echo nothing to start",
"test": "vitest run",
"test:watch": "vitest --watch",
"test:cov": "vitest run --coverage",
"lint": "eslint -o eslint-report.json --format json .",
"test:update": "vitest run --update"
},
"keywords": [
"talend"
],
"author": "Talend Frontend <frontend@talend.com>",
"homepage": "https://github.com/Talend/ui/tree/master/packages/assets-api#readme",
"bugs": {
"url": "https://github.com/Talend/ui/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Talend/ui.git"
},
"dependencies": {},
"devDependencies": {
"@talend/babel-plugin-import-from-index": "^1.13.1",
"@talend/eslint-config": "^14.1.2",
"@talend/eslint-plugin": "^1.8.1",
"@talend/scripts-core": "^20.0.0",
"@talend/scripts-config-react-webpack": "^17.1.1",
"@talend/scripts-config-typescript": "^12.1.1",
"@types/node": "^6.14.13",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.3",
"read-pkg-up": "^7.0.1",
"vitest": "^4.0.18"
},
"publishConfig": {
"access": "public"
},
"version": "2.1.1"
}