-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 987 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 987 Bytes
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
{
"name": "shared-timer-manager",
"version": "1.0.2",
"description": "Manage multiple timer tasks with a single SharedWebWorker",
"main": "dist/timer-manager.js",
"module": "dist/timer-manager.esm.js",
"types": "dist/timer-manager.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build"
},
"keywords": [
"timer",
"sharedworker",
"web-worker",
"task-manager",
"vue",
"react",
"javascript",
"interval",
"timeout"
],
"author": "Dario Espina <me@darioespina.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dariusve/shared-timer-manager.git"
},
"bugs": {
"url": "https://github.com/dariusve/shared-timer-manager/issues"
},
"homepage": "https://github.com/dariusve/shared-timer-manager#readme",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^4.55.1"
}
}