-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.38 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.38 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
32
33
34
35
36
37
38
39
{
"name": "@webfuse-com/domquake",
"version": "1.0.0",
"author": "Thassilo M. Schiepanski",
"type": "module",
"main": "./dist.lib/api.lib.js",
"types": "./dist.lib/types/api.lib.d.ts",
"scripts": {
"prepare": "husky",
"build:lib": "npx esbuild ./src/* --outdir=./dist.lib/ --platform=node --format=esm --target=es2022 --packages=external",
"build:browser": "npx esbuild ./src/api.browser.ts --bundle --outfile=./dist.browser/DOMQuake.js",
"build:browser:watch": "npm run build:browser -- --watch",
"build:types": "npx tsc",
"build": "npm run build:lib && npm run build:types && npm run build:browser",
"lint": "npx eslint ./src/*",
"lint:fix": "npm run lint -- --fix",
"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": {
"@eslint/js": "^10.0.1",
"esbuild": "^0.27.2",
"eslint": "^10.2.1",
"husky": "^9.1.7",
"puppeteer": "^24.40.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
}
}