-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.61 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
{
"name": "react-as",
"author": "KingSora | Rene Haas",
"version": "1.0.3",
"description": "Render react components as other components.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/KingSora/react-as"
},
"homepage": "https://github.com/KingSora/react-as",
"bugs": {
"url": "https://github.com/KingSora/react-as/issues"
},
"keywords": [
"react",
"component",
"as",
"frontend"
],
"files": [
"src",
"dist",
"README.md",
"LICENSE"
],
"main": "./dist/react-as.umd.js",
"module": "./dist/react-as.esm.js",
"typings": "./dist/types/index.d.ts",
"peerDependencies": {
"react": ">=16.0.0"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"babel-jest": "^27.5.1",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.1.0",
"eslint-plugin-react": "^7.28.0",
"jest": "^27.5.1",
"prettier": "2.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^2.67.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.5.5"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint src/** --fix",
"test": "jest --coverage=true"
}
}