-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.09 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"name": "@webfuse-com/domquake",
"version": "1.0.0",
"author": "Thassilo M. Schiepanski",
"type": "module",
"main": "./dist.lib/api.js",
"scripts": {
"prepare": "husky",
"build:lib": "npx esbuild ./src/* --outdir=./dist.lib/ --bundle --platform=node --format=esm --target=es2022 --packages=external",
"build:browser": "npx esbuild ./src/api.ts --bundle --outfile=./dist.browser/DOMQuake.js",
"build:browser:watch": "npm run build:api -- --watch",
"build": "npm run build:lib && npm run build:browser",
"test:unit": "node --experimental-strip-types ./test/unit/test.js",
"test:end-to-end": "node ./test/end-to-end/test.js",
"test": "npm run test:unit && npm run test:end-to-end",
"demo": "node ./demo/demo.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webfuse-com/domquake.git"
},
"bugs": {
"url": "https://github.com/webfuse-com/domquake/issues"
},
"homepage": "https://github.com/webfuse-com/domquake#readme",
"devDependencies": {
"esbuild": "^0.27.2",
"husky": "^9.1.7",
"puppeteer": "^24.40.0"
}
}