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) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 KB
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": "htm",
"version": "1.0.0",
"description": "The Tagged Template Literal syntax for Virtual DOM. Only browser-compatible syntax.",
"main": "dist/htm.js",
"umd:main": "dist/htm.js",
"module": "dist/htm.mjs",
"scripts": {
"build": "microbundle src/htm.js -f es,umd --no-sourcemap --target web && npm run -s build:preact",
"build:preact": "microbundle src/integrations/preact.js -o preact/index.js -f es,umd --no-sourcemap --target web",
"test": "eslint src test && jest test"
},
"eslintConfig": {
"extends": "developit",
"rules": {
"prefer-const": 2
}
},
"repository": "developit/htm",
"keywords": [
"Hyperscript Tagged Markup",
"tagged template literals",
"html",
"htm",
"preact",
"lit"
],
"author": "Jason Miller <jason@developit.ca>",
"license": "Apache-2.0",
"homepage": "https://github.com/developit/htm",
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-developit": "^1.1.1",
"jest": "^23.1.0",
"microbundle": "^0.4.4",
"preact": "^8.2.9"
}
}