-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 998 Bytes
/
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
{
"name": "statman-stopwatch",
"version": "2.18.1",
"description": "statman-stopwatch is one of the metrics from the statman library. It is a simple high res stopwatch for node.js. Stopwatch is useful for determining the amount of time it takes to perform an activity.",
"main": "lib/Stopwatch.js",
"files": [
"lib"
],
"scripts": {
"test": "mocha test/"
},
"repository": {
"type": "git",
"url": "git://github.com/jasonray/statman-stopwatch.git"
},
"author": "jason ray <[email protected]> (https://github.com/jasonray)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonray/statman-stopwatch/issues"
},
"dependencies": {
"performance-now": "^2.1.0",
"uuid": "^9.0.0"
},
"directories": {
"test": "test"
},
"devDependencies": {
"mocha": "^10.2.0",
"should": "^13.2.3"
},
"keywords": [
"stopwatch",
"timing",
"performance",
"timer"
],
"homepage": "https://statman-stopwatch.jayray.net/"
}