-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.01 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
{
"name": "time-logger",
"version": "0.3.1",
"description": "Utility library for tracking and tallying function calls in browsers, Node, or Arangodb's Foxx",
"main": "time-logger.js",
"files": [
"time-logger.js"
],
"scripts": {
"lint": "eslint *.js",
"test": "jest --coverage",
"coverage": "opn coverage/lcov-report/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gkjohnson/time-logger-js.git"
},
"keywords": [
"performance",
"profile",
"profiling",
"timing",
"time",
"now",
"tally",
"debug",
"debugging",
"foxx",
"arango",
"arangodb"
],
"author": "Garrett Johnson",
"license": "MIT",
"bugs": {
"url": "https://github.com/gkjohnson/time-logger-js/issues"
},
"homepage": "https://github.com/gkjohnson/time-logger-js#readme",
"devDependencies": {
"eslint": "^5.4.0",
"jest": "^23.5.0",
"jest-cli": "^23.6.0",
"opn-cli": "^3.1.0"
},
"jest": {
"testEnvironment": "node"
}
}