-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.2 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.2 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": "htmlhammer",
"version": "4.0.1",
"description": "Write HTML and CustomElements with JavaScript using real HTML tags",
"main": "cjs/index.js",
"module": "esm/index.js",
"scripts": {
"build": "babel --config-file ./.babelrc_hh ./esm --delete-dir-on-start -D -d ./cjs && npm run jsx && npm test && npm run coverage:file && rm htmlhammer.js htmlhammer.min.js || true && rollup -c",
"test": "ospec test/**/*.spec.js",
"jsx": "babel --config-file ./.babelrc_jsx demo/jsx --out-dir demo/jsx",
"coverage": "nyc ospec test/**/*.spec.js report",
"coverage:file": "nyc ospec test/**/*.spec.js report > test-coverage-report.txt"
},
"keywords": [
"html",
"javascript",
"template",
"customelements",
"web",
"components",
"webcomponents"
],
"author": "vedransmid@yeti-it.hr",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/compat-data": "^7.15.0",
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@babel/preset-react": "^7.22.5",
"basichtml": "^2.4.9",
"nyc": "^15.0.0",
"ospec": "^4.0.1",
"rollup": "^1.32.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.1"
}
}