-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 902 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 902 Bytes
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
{
"name": "firefox-profiler-for-chrome",
"version": "1.2.0",
"private": true,
"author": "Nazım Can Altınova <canaltinova@gmail.com>",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "https://github.com/firefox-devtools/firefox-profiler-for-chrome"
},
"bugs": {
"url": "https://github.com/firefox-devtools/firefox-profiler-for-chrome/issues"
},
"scripts": {
"lint": "eslint **/*.js",
"prettier": "prettier . --check",
"prettier-fix": "prettier . --write",
"ts": "tsc",
"test-all": "run-p lint prettier ts",
"package": "zip -r firefox-profiler.zip manifest.json LICENSE src/ icons/"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@types/chrome": "^0.0.276",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"npm-run-all": "^4.1.5",
"prettier": "3.3.3",
"typescript": "^5.6.2"
}
}