-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "handle-node",
"version": "0.6.1",
"type": "module",
"main": "./dist/index-umd.min.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index-esm.min.js",
"require": "./dist/index-umd.min.js"
}
},
"license": "MIT",
"author": "Brett Zamir",
"contributors": [],
"homepage": "https://github.com/brettz9/handle-node",
"scripts": {
"prepublishOnly": "pnpm i && pnpm rollup",
"tsc": "tsc",
"tsc-prod": "tsc -p tsconfig-prod.json",
"eslint": "eslint .",
"lint": "npm run eslint --",
"rollup": "rollup -c && npm run tsc-prod",
"mocha": "mocha --exit",
"test-cov": "c8 npm run mocha",
"test": "npm run eslint && npm run rollup && npm run mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/brettz9/handle-node.git"
},
"engines": {
"node": "^20.11.0 || >= 22.0.0"
},
"browserslist": [
"cover 100%"
],
"bugs": "https://github.com/brettz9/handle-node/issues",
"description": "Simple callback delegator based on DOM Node type",
"keywords": [
"dom",
"node",
"delegator"
],
"devDependencies": {
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@rollup/plugin-babel": "^7.1.0",
"@rollup/plugin-terser": "^1.0.0",
"@types/chai": "^5.2.3",
"@types/jsdom": "^28.0.3",
"@types/mocha": "^10.0.10",
"baseline-browser-mapping": "^2.11.10",
"c8": "^12.0.0",
"chai": "^6.2.2",
"eslint": "^10.8.0",
"eslint-config-ash-nazg": "^41.1.1",
"jsdom": "^30.0.1",
"mocha": "^11.7.6",
"rollup": "^4.62.4",
"typescript": "^7.0.2"
}
}