-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
80 lines (80 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "remount",
"description": "Mount React components to the DOM using custom elements",
"version": "1.0.0",
"author": "Rico Sta. Cruz <[email protected]>",
"bugs": {
"url": "https://github.com/rstacruz/remount/issues"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@types/jest": "^29.0.3",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.15.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.79.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.8.3"
},
"directories": {
"doc": "docs",
"example": "examples"
},
"files": [
"index.js",
"dist",
"es5.js",
"src"
],
"homepage": "https://github.com/rstacruz/remount#readme",
"jest": {
"setupFilesAfterEnv": [
"./test/jest.setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"keywords": [
"custom element",
"mount",
"onmount",
"react",
"web component"
],
"license": "MIT",
"main": "dist/remount.es5.js",
"module": "dist/remount.js",
"peerDependencies": {
"react": ">= 18.0.0",
"react-dom": ">= 18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rstacruz/remount.git"
},
"scripts": {
"build": "rollup --config",
"prettier": "prettier '*.js' 'src/**/*.{js,ts}'",
"tsc": "tsc",
"jest": "jest",
"prepare": "run-s build",
"test": "jest",
"watch": "env NODE_ENV=test-rollup rollup --config --watch"
}
}