-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 872 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 872 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
{
"name": "html-autoloader",
"version": "0.1.0",
"description": "The `html-autoloader` library provides a service for loading Web Components in web-browsers. It facilitates _dynamic-linking_, where one Web Component can reference another Web Component *without* knowledge of its physical file-layout.",
"main": "src/HtmlAutoloader.js",
"directories": {
"doc": "doc"
},
"scripts": {
"start": "http-server -p 8080",
"test": "playwright test",
"lint": "npx eslint src tests"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@eslint/json": "^1.0.0",
"@playwright/test": "^1.58.1",
"eslint": "^9.39.2",
"eslint-plugin-playwright": "^2.5.1",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"http-server": "^14.1.1",
"prettier": "3.8.1"
}
}