-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
62 lines (62 loc) · 1.68 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
60
61
62
{
"name": "bind-event-listener",
"version": "3.0.0",
"private": false,
"description": "Making binding and unbinding DOM events easier",
"author": "Alex Reardon <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/alexreardon/bind-event-listener.git"
},
"keywords": [
"dom",
"ui",
"event listener",
"event handler"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"config": {
"prettier_target": "src/**/*.{ts,js,jsx,md,json} test/**/*.{ts,js,jsx,md,json}"
},
"files": [
"/dist",
"/src"
],
"size-limit": [
{
"path": "dist/index.js",
"limit": "549B"
}
],
"scripts": {
"typescript:check": "tsc --noEmit && tsc --noEmit --project ./test/tsconfig.json",
"typescript:watch": "tsc --watch",
"typescript:build": "tsc",
"prettier:check": "prettier --debug-check $npm_package_config_prettier_target",
"prettier:write": "prettier --write $npm_package_config_prettier_target",
"validate": "yarn typescript:check && yarn prettier:check",
"test": "yarn jest",
"size:check": "size-limit",
"build:clean": "rimraf dist",
"build": "yarn build:clean && yarn typescript:build",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.0",
"expect-type": "^0.15.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"size-limit": "^8.2.4",
"ts-expect": "^1.3.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {}
}