-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "date-timeout-interval",
"version": "1.3.0",
"description": "Implementation of setTimeout and setInterval with pause",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && jest",
"lint": "eslint . --ext .ts",
"build": "npm run lint && tsc",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blaumeise20/date-timeout-interval.git"
},
"author": "Alvin Ramskogler",
"license": "MIT",
"bugs": {
"url": "https://github.com/blaumeise20/date-timeout-interval/issues"
},
"homepage": "https://github.com/blaumeise20/date-timeout-interval#readme",
"keywords": [
"async",
"await",
"callback",
"cancel",
"cancelable",
"date",
"framework",
"interval",
"pausable",
"pause",
"setinterval",
"settimeout",
"time",
"timeout",
"timer",
"timing"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"typescript": "^4.1.3",
"eslint-plugin-jest": "^24.1.3"
}
}