-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
95 lines (95 loc) · 2.15 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "estimo",
"version": "3.0.3",
"description": "Evaluates how long the browser will execute your javascript code",
"main": "index.js",
"types": "./index.d.ts",
"type": "module",
"engines": {
"node": ">=18"
},
"license": "MIT",
"author": "mbalabash <maksim.balabash@gmail.com>",
"scripts": {
"unit": "ava --timeout=4m --exit",
"test": "eslint . && yarn unit",
"clean": "rimraf ./temp/*.{html,json} && node ./scripts/clean-chrome-config.js"
},
"bin": {
"estimo": "./scripts/cli.js"
},
"dependencies": {
"@sitespeed.io/tracium": "^0.3.3",
"commander": "^12.0.0",
"find-chrome-bin": "2.0.2",
"nanoid": "5.0.7",
"puppeteer-core": "22.6.5"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.2",
"ava": "6.1.2",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-perfectionist": "^2.9.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.5"
},
"files": [
"scripts/**",
"temp/chrome/.gitkeep",
"CHANGELOG.md",
"chrome.json",
"index.d.ts",
"index.js",
"README.md",
"src/**"
],
"eslintConfig": {
"extends": "@logux/eslint-config",
"rules": {
"no-console": "off"
}
},
"eslintIgnore": [
"tests/__mock__/*.js",
"README.md"
],
"ava": {
"concurrency": 1,
"files": [
"tests/**/*.js",
"!tests/__mock__/**"
]
},
"prettier": {
"arrowParens": "avoid",
"quoteProps": "as-needed",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
},
"repository": {
"type": "git",
"url": "https://github.com/mbalabash/estimo.git"
},
"homepage": "https://github.com/mbalabash/estimo#readme",
"bugs": {
"url": "https://github.com/mbalabash/estimo/issues"
},
"preferGlobal": true,
"keywords": [
"chrome",
"tracium",
"puppeteer",
"devtools",
"size-limit",
"performance"
]
}