-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 949 Bytes
/
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
{
"name": "simplified-jsx-to-json",
"version": "0.2.0",
"description": "Converts basic JSX code into a JSON representation, which can be used by React.createElement",
"keywords": [
"jsx",
"convert",
"json",
"createElement",
"react",
"ast"
],
"main": "index.js",
"repository": "https://github.com/gglnx/simplified-jsx-to-json",
"author": {
"name": "Dennis Morhardt",
"email": "[email protected]",
"url": "https://dennismorhardt.de"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"scripts": {
"test": "ava && tsd"
},
"files": [
"index.js",
"possible-standard-names.js",
"index.d.ts"
],
"dependencies": {
"acorn": "^7.1.1",
"acorn-jsx": "^5.2.0",
"html-tag-names": "^1.1.5",
"is-string": "^1.0.5",
"style-to-object": "^0.3.0",
"svg-tag-names": "^2.0.1"
},
"devDependencies": {
"ava": "^3.5.1",
"tsd": "^0.11.0"
}
}