forked from onury/perfy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 921 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
40
41
42
43
44
{
"name": "perfy",
"version": "1.1.5",
"description": "A simple, light-weight NodeJS utility for measuring code execution in high-resolution real times.",
"author": {
"name": "Onur Yıldırım",
"email": "[email protected]"
},
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "node test",
"lint": "eslint index.js test"
},
"repository": {
"type": "git",
"url": "https://github.com/onury/perfy"
},
"files": [
"index.js",
"LICENSE"
],
"keywords": [
"perfy",
"perf",
"performance",
"measure",
"execution",
"time",
"benchmark",
"profile",
"elapsed"
],
"bugs": {
"url": "https://github.com/onury/perfy/issues"
},
"homepage": "https://github.com/onury/perfy#readme",
"devDependencies": {
"eslint": "^5.2.0",
"jasmine": "^3.1.0",
"jasmine-console-reporter": "^3.0.2"
},
"dependencies": {}
}