-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 982 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
{
"name": "ember-macro-benchmark",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "https://github.com/krisselden/ember-macro-benchmark.git"
},
"license": "MIT",
"author": {
"name": "Kris Selden",
"email": "[email protected]"
},
"main": "dist/index.js",
"bin": {
"macro-benchmark": "./bin/macro-benchmark.js"
},
"scripts": {
"bench": "tsc && node dist/index.js",
"build": "tsc",
"plot": "plot ./results/results.json",
"report": "report ./results/results.json",
"serve": "tsc && node --expose-gc dist/server.js"
},
"dependencies": {
"@tracerbench/core": "^3.0.0",
"@tracerbench/har": "^3.0.0",
"@types/estree": "^0.0.42",
"@types/node": "^13.5.0",
"acorn": "^7.1.0",
"common-tags": "^1.8.0",
"estree-walker": "^1.0.1",
"fs-extra": "^8.1.0",
"har-remix": "^3.0.0",
"network-emulation-conditions": "^1.0.0",
"typescript": "^3.7.5",
"yargs": "^15.1.0"
}
}