-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "timeoutcontrol",
"version": "1.1.3",
"description": "A JavaScript tool to control setTimeout operations.",
"main": "./dist/index.js",
"browser": "./dist/index.min.js",
"license": "MIT",
"author": "Yong Quan Lim <[email protected]>",
"files": [
"dist"
],
"scripts": {
"build": "npm run rollup && npm run terser",
"dev": "rollup -c -w",
"rollup": "rollup -c",
"terser": "terser -c -m --comments /license/i -o ./dist/index.min.js ./dist/index.js",
"test": "mocha",
"testing": "mocha -w"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"chai": "^4.2.0",
"mocha": "^10.1.0",
"rollup": "^1.1.0",
"rollup-plugin-babel": "^4.3.0",
"rollup-plugin-typescript2": "^0.22.1",
"terser": "^5.15.1",
"typescript": "^3.5.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yqlim/timeoutcontrol.git"
},
"bugs": {
"url": "https://github.com/yqlim/timeoutcontrol/issues"
},
"homepage": "https://github.com/yqlim/timeoutcontrol#readme",
"keywords": [
"setTimeout",
"pause",
"resume",
"setTimeoutpause",
"setTimeoutControl",
"timeout",
"timeoutcontrol",
"timeoutcontroller",
"timeoutpauser"
]
}