-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.85 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@danielhaim/modulator",
"version": "2.4.0",
"description": "An advanced debouncing utility designed to optimize high-frequency events in web applications, such as scroll, resize, and input.",
"keywords": [
"debounce",
"debouncer",
"throttle",
"performance optimization",
"performance",
"optimization",
"utility",
"helper",
"typescript"
],
"homepage": "https://github.com/danielhaim1/modulator/#readme",
"bugs": {
"url": "https://github.com/danielhaim1/modulator/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/danielhaim1/modulator.git"
},
"license": "Apache-2.0",
"author": {
"name": "Daniel Haim",
"url": "https://github.com/danielhaim1"
},
"main": "./dist/modulator.cjs",
"module": "./dist/modulator.esm.js",
"browser": "./dist/modulator.umd.js",
"types": "./dist/index.d.ts",
"files": [
"LICENSE",
"README.md",
"dist/",
"package.json"
],
"scripts": {
"generate-docs": "jsdoc -c jsdoc.json",
"build": "webpack --config webpack.config.cjs",
"build-docs": "cd docs && bundle install && bundle exec jekyll build",
"release": "npm run typecheck && npm run test && npm run build && npm version patch -m 'Release: patch v%s' && git push && git push --tags && npm publish",
"release:major": "npm run typecheck && npm run test && npm run build && npm version major -m 'Release: major v%s' && git push && git push --tags && npm publish",
"release:minor": "npm run typecheck && npm run test && npm run build && npm version minor -m 'Release: minor v%s' && git push && git push --tags && npm publish",
"test": "jest --config=jest.config.cjs",
"test:watch": "jest --watch --config=jest.config.cjs",
"test:coverage": "jest --coverage --config=jest.config.cjs",
"tree": "tree -I 'node_modules|dist'",
"clean": "rm -rf dist/",
"typecheck": "tsc --noEmit",
"lint": "eslint \"src/**/*.ts\" \"__test__/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" \"__test__/**/*.ts\" --fix"
},
"engines": {
"node": ">=16"
},
"devDependencies": {
"@jest/expect": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.18.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.25.10",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.32.0",
"exports-loader": "^5.0.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-environment-puppeteer": "^11.0.0",
"jest-puppeteer": "^11.0.0",
"puppeteer": "^24.22.0",
"puppeteer-core": "^24.22.0",
"terser-webpack-plugin": "^5.3.14",
"ts-jest": "^29.4.3",
"ts-loader": "^9.5.4",
"typescript": "^5.9.2",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"publishConfig": {
"access": "public"
}
}