forked from developit/htm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 895 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 895 Bytes
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
{
"name": "babel-plugin-htm",
"version": "1.0.1",
"description": "Babel plugin to compile htm's Tagged Template syntax to hyperscript or inline VNodes.",
"main": "dist/babel-plugin-htm.js",
"module": "dist/babel-plugin-htm.mjs",
"scripts": {
"build": "microbundle index.mjs -f es,cjs --target node --no-compress --no-sourcemap",
"prepare": "npm run build"
},
"files": [
"dist"
],
"repository": "developit/htm",
"keywords": [
"Hyperscript Tagged Markup",
"tagged template",
"template literals",
"html",
"htm",
"jsx",
"virtual dom",
"hyperscript",
"babel",
"babel plugin",
"babel-plugin"
],
"author": "Jason Miller <jason@developit.ca>",
"license": "Apache-2.0",
"homepage": "https://github.com/developit/htm/packages/babel-plugin-htm",
"dependencies": {
"htm": "^1.0.0",
"jsdom": "^11.12.0"
},
"devDependencies": {
"microbundle": "^0.6.0"
}
}