-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.57 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.57 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
{
"name": "default-passive-events",
"version": "4.0.0",
"description": "Makes {passive: true} by default when EventListenerOptions are supported",
"main": "dist/index.js",
"module": "dist/index.module.js",
"esmodule": "dist/index.modern.js",
"unpkg": "dist/index.umd.js",
"scripts": {
"test": "jest",
"test-ci": "jest --runInBand --coverage",
"lint": "eslint . && prettier . --check",
"fix": "pnpm eslint --fix && prettier . --write",
"build": "microbundle",
"watch": "microbundle watch",
"prepublishOnly": "pnpm test-ci && pnpm build"
},
"keywords": [
"default passive events",
"passive events",
"auto passive events",
"lightweight",
"simple",
"passive event listeners"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zzarcon/default-passive-events.git"
},
"author": "zzarcon",
"contributors": [
"FRS <jakub.freisler@gmail.com> (https://github.com/frsgit)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/zzarcon/default-passive-events/issues"
},
"homepage": "https://github.com/zzarcon/default-passive-events#readme",
"dependencies": {},
"devDependencies": {
"@frsource/eslint-config": "^1.48.0",
"@frsource/prettier-config": "^1.29.0",
"eslint": "^9.27.0",
"globals": "^16.1.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"microbundle": "0.15.1",
"prettier": "^3.5.3"
},
"files": [
"dist",
"LICENSE"
],
"jest": {
"resetMocks": true,
"testEnvironment": "jsdom"
},
"packageManager": "pnpm@10.11.0"
}