-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
59 lines (59 loc) · 1.14 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
58
59
{
"name": "delegate-it",
"version": "3.0.0",
"description": "Lightweight and modern event delegation in the browser",
"keywords": [
"delegate",
"browser",
"dom",
"live",
"selector",
"delegation",
"chrome",
"electron",
"firefox",
"safari",
"event"
],
"repository": "fregante/delegate-it",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (https://fregante.com)",
"type": "module",
"main": "index.js",
"module": "index.js",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "tsc",
"prepack": "tsc --sourceMap false",
"test": "tsc && xo && ava",
"watch": "run-p --silent watch:*",
"watch:build": "tsc --watch",
"watch:test": "ava --watch"
},
"xo": {
"envs": [
"browser"
],
"rules": {
"import/extensions": "off",
"import/no-useless-path-segments": "off",
"max-params": "off",
"unicorn/import-index": "off"
}
},
"dependencies": {
"typed-query-selector": "^2.4.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^1.0.1",
"ava": "^3.15.0",
"jsdom": "^16.5.2",
"npm-run-all": "^4.1.5",
"sinon": "^10.0.0",
"typescript": "^4.2.4",
"xo": "^0.38.2"
}
}