-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
55
56
57
{
"name": "dom-event-handler",
"description": "A generic dom event handler as a class property",
"version": "1.0.4",
"author": "Bret Comnes <[email protected]> (https://bret.io)",
"bugs": {
"url": "https://github.com/bcomnes/dom-event-handler/issues"
},
"dependencies": {},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"coveralls": "^3.0.0",
"customevent": "^1.0.0",
"dependency-check": "^4.1.0",
"dom4": "^2.1.3",
"existy": "^1.0.1",
"gh-release": "^7.0.0",
"jsdom": "^26.0.0",
"npm-run-all": "^4.0.2",
"nyc": "^17.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tape": "^5.0.1",
"tape-run": "^11.0.0"
},
"homepage": "https://github.com/bcomnes/dom-event-handler#readme",
"keywords": [
"arrow function",
"bind",
"EventListener",
"dom event handler",
"event",
"event handler",
"handler",
"websocket",
"ws"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/dom-event-handler.git"
},
"scripts": {
"debug": "node --nolazy --inspect-brk=9229 node_modules/.bin/tape 'test.js' | tap-format-spec",
"report": "nyc report --reporter=text-lcov | coveralls",
"test": "run-s test:*",
"test:deps": "dependency-check package.json --missing --unused --no-dev",
"test:lint": "standard --verbose | snazzy",
"test:tape": "nyc tape 'test.js' | tap-format-spec",
"release": "git push && git push --tags && gh-release && npm publish"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
}
}