-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 838 Bytes
/
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
{
"name": "history-throttled",
"version": "1.0.1",
"description": "A throttled drop-in replacement for history.replaceState and history.pushState.",
"main": "dist-cjs/index.js",
"types": "dist-cjs/index.d.ts",
"scripts": {
"build": "rm -rf dist-cjs && mkdir dist-cjs && tsc --outDir dist-cjs --module commonjs",
"prepare": "npm run build",
"test": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joliss/history-throttled.git"
},
"keywords": [
"throttle",
"debounce",
"history",
"location"
],
"author": "Jo Liss",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/joliss/history-throttled/issues"
},
"homepage": "https://github.com/joliss/history-throttled#readme",
"devDependencies": {
"typescript": "^4.9.4"
}
}