-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.77 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
{
"name": "@butility/dom",
"version": "1.0.1",
"main": "dom.js",
"type": "module",
"scripts": {
"build:types": "tsc --declaration --allowJs --emitDeclarationOnly dom.js attribute.js class.js html.js element.js event.js traverse.js",
"build:main": "esbuild src/index.ts --bundle --outfile=dom.js --format=esm",
"build:attribute": "esbuild src/modules/attribute.ts --bundle --outfile=attribute.js --format=esm",
"build:class": "esbuild src/modules/class.ts --bundle --outfile=class.js --format=esm",
"build:html": "esbuild src/modules/html.ts --bundle --outfile=html.js --format=esm",
"build:element": "esbuild src/modules/element.ts --bundle --outfile=element.js --format=esm",
"build:event": "esbuild src/modules/event.ts --bundle --outfile=event.js --format=esm",
"build:traverse": "esbuild src/modules/traverse.ts --bundle --outfile=traverse.js --format=esm",
"build": "npm run build:main && npm run build:attribute && npm run build:class && npm run build:html && npm run build:element && npm run build:event && npm run build:traverse",
"format": "prettier --write src/**/*.ts",
"test": "jest",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/butility/dom.git"
},
"keywords": [
"butility",
"dom"
],
"author": "Ermiyas Arage",
"license": "MIT",
"bugs": {
"url": "https://github.com/butility/dom/issues"
},
"homepage": "https://github.com/butility/dom#readme",
"description": "",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.5.5",
"esbuild": "^0.23.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-migrate": "^0.0.0",
"typescript": "^5.6.2"
}
}