-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.19 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.19 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "perf-ref",
"version": "1.0.5",
"description": "A mock program to normalise perf scores",
"keywords": [
"benchmark",
"bench",
"performance",
"perf"
],
"homepage": "https://codsen.com/os/perf-ref/",
"repository": {
"type": "git",
"url": "https://github.com/codsen/perf-ref.git"
},
"license": "MIT",
"author": {
"name": "Roy Revelt",
"email": "roy@codsen.com",
"url": "https://codsen.com"
},
"type": "module",
"exports": {
"types": "./types/index.d.ts",
"script": "./perf-ref.umd.js",
"default": "./perf-ref.esm.js"
},
"types": "types/index.d.ts",
"scripts": {
"devtest": "c8 yarn run unit",
"test": "yarn run devtest",
"unit": "uvu test"
},
"c8": {
"check-coverage": false,
"exclude": [
"**/test/**/*.*"
],
"lines": 100
},
"lect": {
"licence": {
"extras": [
""
]
},
"req": "{ perfRef, opsPerSec, version }",
"various": {
"devDependencies": []
}
},
"dependencies": {
"@babel/runtime": "^7.16.3"
},
"devDependencies": {
"c8": "^7.11.2",
"uvu": "^0.5.3"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}