-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.2 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
{
"name": "@ecl/ecl-webcomponents-react",
"version": "0.15.0",
"description": "ECL react app",
"main": "lib/index.ts",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"keywords": [
"webcomponents",
"europa",
"component",
"library",
"react"
],
"author": "planctus <[email protected]>",
"homepage": "https://github.com/ec-europa/ecl-webcomponents",
"license": "EUPL-1.2",
"directories": {
"lib": "lib",
"test": "__tests__",
"scripts": "scripts"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@ecl/ecl-webcomponents": "0.15.0"
},
"devDependencies": {
"@types/react": "18.2.48",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "5.0.5",
"typescript": "5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ec-europa/ecl-webcomponents.git"
},
"scripts": {
"clean": "rimraf dist",
"test": "node ./__tests__/react-library.test.js",
"build": "npm run clean && npm run tsc",
"tsc": "tsc -p .",
"pre-publish": "npm run build"
},
"bugs": {
"url": "https://github.com/ec-europa/ecl-webcomponents/issues"
}
}