-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
123 lines (123 loc) · 3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "react-ast",
"version": "0.6.17",
"description": "render abstract syntax trees with react",
"sideEffects": false,
"keywords": [
"abstract",
"ast",
"babel",
"generate",
"jsx",
"react",
"react",
"reconcile",
"reconciler",
"render",
"renderer",
"syntax",
"template",
"tree",
"ts",
"typescript"
],
"homepage": "https://gitlab.com/bitspur/community/react-ast",
"bugs": {
"url": "https://gitlab.com/bitspur/community/react-ast/issues",
"email": "info@bitspur.com"
},
"license": "Apache-2.0",
"author": {
"name": "Clay Risser",
"email": "email@clayrisser.com",
"url": "https://clayrisser.com"
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"source": "src/index.ts",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://gitlab.com/bitspur/community/react-ast.git"
},
"dependencies": {
"@babel/generator": "^7.23.5",
"@babel/parser": "^7.23.5",
"@babel/runtime": "^7.23.5",
"@babel/template": "^7.22.15",
"@babel/types": "^7.23.5",
"@react-hook/merged-ref": "^1.3.2",
"core-js": "^3.33.3",
"lodash.get": "^4.4.2",
"lodash.merge": "^4.6.2",
"lodash.set": "^4.3.2",
"prettier": "^3.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-reconciler": "^0.29.0"
},
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/node": "^7.22.19",
"@babel/preset-env": "^7.23.5",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@swc/core": "^1.3.100",
"@types/babel__parser": "^7.1.1",
"@types/babel__preset-env": "^7.9.6",
"@types/estree": "^1.0.5",
"@types/jest": "^29.5.10",
"@types/lodash.get": "^4.4.9",
"@types/lodash.merge": "^4.6.9",
"@types/lodash.set": "^4.3.9",
"@types/prop-types": "^15.7.11",
"@types/react": "^18.2.39",
"@types/react-reconciler": "^0.28.8",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"babel-jest": "^29.7.0",
"cspell": "^8.0.0",
"eslint": "^8.54.0",
"eslint-config-alloy": "^5.1.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-spellcheck": "^0.0.20",
"jest": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"transpileModules": [],
"engines": {
"node": ">=12.0.0"
},
"eslintIgnore": [
"lib"
],
"jest": {
"testRegex": "\\.(spec|test)\\.[cm]?[jt]sx?$",
"testEnvironment": "node",
"verbose": true,
"testResultsProcessor": "jest-sonar-reporter",
"testPathIgnorePatterns": [
"<rootDir>/lib/"
]
},
"jestSonar": {
"reportPath": ".mkpm/mkpm/.tmp/reports",
"reportFile": "test-report.xml",
"indent": 4
},
"packageManager": "yarn@3.7.0"
}