-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.49 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
{
"name": "precise-now",
"version": "3.0.0",
"type": "module",
"exports": {
"types": "./build/src/main.d.ts",
"default": "./build/src/main.js"
},
"main": "./build/src/main.js",
"types": "./build/src/main.d.ts",
"files": [
"build/src/**/*.{js,json,d.ts}",
"!build/src/**/*.test.js",
"!build/src/{helpers,fixtures}"
],
"sideEffects": false,
"scripts": {
"test": "gulp test"
},
"description": "Like `performance.now()` but in nanoseconds.",
"keywords": [
"browsers",
"data-now",
"date",
"hrtime",
"javascript",
"library",
"microseconds",
"milliseconds",
"nanosecond-resolution",
"nanoseconds",
"nodejs",
"performance",
"performance-analysis",
"performance-metrics",
"performance-monitoring",
"performance-testing",
"performance-tuning",
"resolution",
"seconds",
"typescript"
],
"license": "MIT",
"homepage": "https://www.github.com/ehmicky/precise-now",
"repository": {
"type": "git",
"url": "git+https://github.com/ehmicky/precise-now.git"
},
"bugs": {
"url": "https://github.com/ehmicky/precise-now/issues"
},
"author": "ehmicky <ehmicky@gmail.com> (https://github.com/ehmicky)",
"directories": {
"lib": "src"
},
"devDependencies": {
"@ehmicky/dev-tasks": "^3.0.27",
"@ehmicky/eslint-config": "^20.0.19",
"@ehmicky/prettier-config": "^1.0.4",
"@types/node": "^22.8.1",
"spyd": "^0.8.2"
},
"engines": {
"node": ">=18.18.0"
}
}