-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
49
50
51
52
53
54
{
"name": "handle-node",
"version": "0.4.0",
"type": "module",
"main": "./dist/index-umd.min.js",
"exports": {
".": {
"import": "./dist/index-es.min.js",
"require": "./dist/index-umd.min.js"
}
},
"license": "MIT",
"author": "Brett Zamir",
"contributors": [],
"homepage": "https://github.com/brettz9/handle-node",
"scripts": {
"eslint": "eslint .",
"rollup": "rollup -c",
"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": ">=6.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": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-terser": "^0.4.4",
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^9.11.1",
"eslint-config-ash-nazg": "^36.19.0",
"jsdom": "^25.0.1",
"mocha": "^10.7.3",
"rollup": "^4.23.0",
"typescript": "^5.6.2"
}
}