-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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": "retimer",
"version": "4.0.0",
"description": "Reschedulable Timer for your node needs",
"main": "retimer.js",
"types": "types.d.ts",
"scripts": {
"lint": "standard",
"test": "npm run test:ci && npm run test:typescript",
"test:ci": "tape test.js | tap-dot",
"test:typescript": "tsd"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/retimer.git"
},
"keywords": [
"schedulable",
"reschedulable",
"timer",
"setTimeout"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mcollina/retimer/issues"
},
"homepage": "https://github.com/mcollina/retimer#readme",
"devDependencies": {
"fastbench": "^1.0.1",
"pre-commit": "^1.2.2",
"standard": "^17.1.0",
"tap-dot": "^2.0.0",
"tape": "^5.6.6",
"tsd": "^0.28.1"
},
"browser": {
"./time.js": "./time-browser.js",
"./timers.js": "./timers-browser.js"
},
"dependencies": {
"worker-timers": "^7.0.75"
}
}