-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "reactify-wc",
"author": "Bryce Kolton (624), Mercedes-Benz R&D North America, Seattle HUB",
"version": "4.0.0",
"license": "MIT",
"description": "Wraps web components in React to allow usage and correct property passthrough",
"module": "dist/index.js",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"keywords": [
"react",
"web component",
"reactify",
"componentize",
"react properties",
"react event handler",
"react attributes"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepack": "npm run build",
"build": "rollup -c"
},
"peerDependencies": {
"react": "^16.3.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.0",
"@types/react": "^16.9.17",
"react": "^16.8.0",
"rollup": "^1.12.0",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript2": "^0.23.0",
"typescript": "^3.5.3"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/BBKolton/reactify-wc"
}
}