-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.08 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "perfmark",
"version": "1.1.0",
"description": "elegant benchmarking in node and typescript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/nivrith/perfmark",
"author": "Nivrith <nivrithgomatam@gmail.com>",
"license": "MIT",
"keywords": [
"benchmark",
"benchmarking",
"performance",
"optimization",
"perf",
"bench",
"bencher",
"benchit",
"bencmarkjs",
"benchmark-typescript",
"perfmark"
],
"scripts": {
"compile": "npm run clean && tsc -b",
"start": "yarn compile && node dist/index",
"test": "nyc mocha --require ts-node/register test/**/*.spec.ts",
"prepublishOnly": "npm run compile",
"pretest": "npm run clean && npm run compile",
"clean": "del-cli dist",
"release": "npx np",
"docs": "typedoc src",
"trace": "tsc -b && node --trace-deopt --trace-opt --runtime_call_stats --trace_ic --trace_ic",
"devtools": "node --inspect --inspect-brk",
"benchmark": "tsc -b && node",
"version": "npx auto-changelog -p && git add CHANGELOG.md"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"lines": 20,
"exclude": [
"test",
"docs",
"dist"
],
"check-coverage": true
},
"files": [
"dist/**/*"
],
"dependencies": {
"@types/figlet": "^1.2.0",
"chalk": "^2.4.2",
"figlet": "^1.2.3"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^0.1.3",
"@types/benchmark": "^1.0.31",
"@types/chai": "^4.1.7",
"@types/cli-table2": "^0.2.2",
"@types/mocha": "^5.2.7",
"@types/ora": "^3.2.0",
"@types/typescript": "^2.0.0",
"auto-changelog": "^1.14.1",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"cli-table2": "^0.2.0",
"del-cli": "^2.0.0",
"fast-memoize": "^2.5.1",
"logdown": "^3.2.8",
"microtime": "^3.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"ora": "^3.4.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typedoc": "^0.14.2",
"typescript": "^3.5.2"
}
}