-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.22 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.22 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
{
"name": "webcomponents-in-react",
"version": "1.0.1",
"description": "Use web components in React as if they were regular React components. Zero dependencies adapter.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "rollup -cw",
"build": "rollup -c",
"test": "./node_modules/.bin/jest"
},
"keywords": [
"react",
"web components",
"custom elements",
"adapter",
"primitive",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/Jibbedi/webcomponents-in-react"
},
"peerDependencies": {
"react": ">= 16.8.0"
},
"devDependencies": {
"react": "16.8.0",
"react-dom": "16.8.0",
"@types/react": "16.8.1",
"@types/react-dom": "16.0.11",
"@types/jest": "^23.3.9",
"tslint-react": "^3.6.0",
"jest": "24.8.0",
"ts-jest": "24.0.2",
"@testing-library/react": "^8.0.0",
"prettier": "^1.16.4",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"typescript": "^3.3.1",
"rollup": "^1.1.2",
"rollup-plugin-typescript2": "^0.19.2"
},
"author": "Johannes Kling",
"license": "MIT",
"dependencies": {}
}