-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 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
67
68
69
70
71
72
73
74
75
76
{
"name": "js-profiler",
"version": "2.5.7",
"description": "Javascript profiling tool and collection of performance profiles for various JavaScript built-ins.",
"main": "lib/index.js",
"man": "./docs/js-profiler.1.gz",
"bin": {
"js-profiler": "bin/js-profiler.js"
},
"scripts": {
"start": "node bin/js-profiler.js",
"manpage": "gzip -c docs/js-profiler.1 > docs/js-profiler.1.gz",
"prepare": "if [ ${NODE_ENV} != 'production' ]; then husky install; fi",
"test": "mocha --recursive \"./{,!(node_modules)/**/}*.test.js\"",
"tdd": "mocha --recursive --watch \"./{,!(node_modules)/**/}*.test.js\"",
"test:ci": "mocha --recursive --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results/mocha/results.xml \"./{,!(node_modules)/**/}*.test.js\"",
"lint": "eslint -c ./.eslintrc.json lib/**/*.js",
"lint:ci": "eslint -c .eslintrc.json --format junit -o test-results/eslint/results.xml lib/**/*.js"
},
"keywords": [
"Performance",
"JavaScript",
"Built-Ins"
],
"author": {
"name": "Hans-Peter Dietz",
"email": "[email protected]",
"twitter": "@h_p_d",
"url": "https://hpdietz.com"
},
"contributors": [
{
"name": "Hans-Peter Dietz",
"email": "[email protected]",
"twitter": "@h_p_d",
"url": "https://hpdietz.com"
},
{
"name": "Fabian Maschewski",
"url": "https://github.com/f-masche"
},
{
"name": "Josh Howe",
"url": "https://github.com/joshtch"
}
],
"funding": "https://github.com/sponsors/haensl",
"license": "MIT",
"dependencies": {
"@haensl/log": "^1.2.2",
"chalk": "^4.1.0",
"glob": "^10.3.7",
"node-getopt": "^0.3.2"
},
"devDependencies": {
"@haensl/eslint-config": "^1.3.0",
"chai": "^4.2.0",
"eslint": "^8.2.0",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.0.0",
"sinon": "^16.0.0",
"sinon-chai": "^3.5.0"
},
"engines": {
"node": ">= 18.18.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haensl/js-profiler.git"
},
"bugs": {
"url": "https://github.com/haensl/js-profiler/issues"
},
"homepage": "https://js-profiler.com"
}