forked from ryansolid/babel-plugin-jsx-dom-expressions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 736 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
{
"name": "babel-plugin-jsx-dom-expressions",
"description": "A JSX to DOM plugin that wraps expressions for fine grained change detection",
"version": "0.3.8",
"author": "Ryan Carniato",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ryansolid/babel-plugin-jsx-dom-expressions"
},
"readmeFilename": "README.md",
"module": "dist/createRuntime.js",
"main": "lib/plugin.js",
"scripts": {
"build": "rollup -c",
"test": "npm run build && jest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"jest": "^23.6.0",
"rollup": "^1.1.2",
"rollup-plugin-node-resolve": "^4.0.0"
},
"dependencies": {
"@babel/plugin-syntax-jsx": "^7.0.0"
}
}