forked from chrisguttandin/worker-timers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.96 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"author": "Christoph Guttandin",
"bugs": {
"url": "https://github.com/chrisguttandin/worker-timers/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"contributors": [
{
"email": "a-anng@expedia.com",
"name": "Anthony Ng"
}
],
"dependencies": {
"@babel/runtime": "^7.17.2",
"tslib": "^2.3.1",
"worker-timers-broker": "^6.0.67",
"worker-timers-worker": "^7.0.34"
},
"description": "A replacement for setInterval() and setTimeout() which works in unfocused windows.",
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-external-helpers": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-angular": "^16.2.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-replace": "^3.1.0",
"babel-loader": "^8.2.3",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.9.0",
"eslint-config-holy-grail": "^52.0.0",
"grunt": "^1.4.1",
"grunt-cli": "^1.4.3",
"grunt-contrib-clean": "^2.0.0",
"grunt-sh": "^0.2.0",
"husky": "^7.0.4",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"load-grunt-config": "^4.0.1",
"memfs": "^3.4.1",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"rollup": "^2.67.2",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"terser-webpack-plugin": "^5.3.1",
"ts-loader": "^9.2.6",
"tsconfig-holy-grail": "^11.1.26",
"tslint": "^6.1.3",
"tslint-config-holy-grail": "^53.2.26",
"typescript": "^4.5.5",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
},
"files": [
"build/es2019/",
"build/es5/",
"src/"
],
"homepage": "https://github.com/chrisguttandin/worker-timers",
"keywords": [
"Web Workers",
"WindowTimers",
"clearInterval",
"clearTimeout",
"interval",
"setInterval",
"setTimeout"
],
"license": "MIT",
"main": "build/es5/bundle.js",
"module": "build/es2019/module.js",
"name": "worker-timers",
"repository": {
"type": "git",
"url": "https://github.com/chrisguttandin/worker-timers.git"
},
"scripts": {
"prepare": "husky install",
"prepublishOnly": "grunt build",
"test": "grunt lint && grunt test"
},
"types": "build/es2019/module.d.ts",
"version": "7.0.45"
}