-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.41 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
{
"name": "long-settimeout",
"version": "1.0.1",
"description": "Long timeout makes it possible to have a timeout that is longer than 24.8 days (2^31-1 milliseconds).",
"author": "Martin Litvaj <[email protected]> (http://litvaj.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Kamahl19/long-settimeout.git"
},
"bugs": {
"url": "https://github.com/Kamahl19/long-settimeout/issues"
},
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"keywords": [
"settimeout",
"timeout",
"timer",
"schedule",
"scheduler"
],
"module": "dist/long-settimeout.esm.js",
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "tsdx build"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"devDependencies": {
"husky": "^4.2.5",
"tsdx": "^0.13.2",
"tslib": "^1.11.1",
"typescript": "^3.8.3"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"settings": {
"react": {
"version": "999.999.999"
}
}
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
}
}