-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.27 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "htmlmodule",
"version": "0.15.2",
"description": "Library for creating UI",
"homepage": "https://aristov.github.io/htmlmodule#readme",
"author": "Vyacheslav Aristov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aristov/htmlmodule.git"
},
"bugs": "https://github.com/aristov/htmlmodule/issues",
"main": "index.js",
"type": "module",
"files": [
"dist",
"lib"
],
"scripts": {
"build": "webpack && NODE_ENV=production webpack",
"coverage": "c8 --reporter=lcov npm test",
"coverage-html": "c8 --reporter=html npm test",
"publish": "git push && git push --tags",
"start": "ava --watch",
"test": "ava"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"ava": "^6.1.2",
"babel-loader": "^9.1.3",
"c8": "^9.1.0",
"jsdom": "^24.0.0",
"sinon": "^17.0.1",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"c8": {
"exclude": [
"dist/**",
"test/**",
"lib/window.cjs"
]
},
"keywords": [
"DOM",
"HTML",
"UI",
"component",
"library",
"virtual dom"
],
"engines": {
"node": ">=16"
}
}