-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "exdom",
"version": "2.0.0",
"description": "Essential DOM utilities",
"keywords": [
"dom",
"browser"
],
"author": "Morris Brodersen <mb@morrisbrodersen.de>",
"license": "ISC",
"homepage": "https://github.com/morris/exdom#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/morris/exdom.git"
},
"bugs": {
"url": "https://github.com/morris/exdom/issues"
},
"files": [
"dist"
],
"main": "dist/exdom.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"format-check": "prettier --check .",
"build": "bash scripts/build.sh",
"test": "bash scripts/test.sh",
"clean": "rm -rf coverage dist test-build test-results",
"docs": "typedoc src/exdom.ts --excludeProtected --excludePrivate"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@playwright/test": "^1.21.1",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.13",
"@types/node": "^20.14.9",
"c8": "^10.1.2",
"eslint": "^9.9.1",
"express": "^4.18.1",
"prettier": "^3.3.2",
"terser": "^5.31.6",
"typedoc": "^0.26.2",
"typescript": "^5.0.4",
"typescript-eslint": "^8.2.0"
}
}