-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.02 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.02 KB
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
{
"name": "timewaste",
"version": "0.4.2",
"description": "Lightweight execution time analyzer",
"keywords": [
"analyzer",
"execution",
"browser",
"nodejs",
"profiler",
"time"
],
"author": "Villem Alango <villem.alango@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/valango/timewaste.git"
},
"main": "src/index.js",
"files": [
"src/*.js"
],
"scripts": {
"clean": "rimraf reports *.log yarn.lock",
"lint": "eslint *.js .",
"profilers": "node benchmarks/profilers v 2",
"purge": "rimraf reports *.log yarn.lock node_modules",
"speeds": "node benchmarks/speeds.js v 10000",
"test": "jest",
"test:coverage": "codecov",
"test1": "jest --coverage=false --bail=1"
},
"dependencies": {
"microtime": "^3.0.0"
},
"devDependencies": {
"codecov": "^3.7.2",
"eslint": "^7.8.1",
"jest": "^26.4.2",
"lodash": "^4.17.20",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=10.15.1"
}
}