-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 784 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 784 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
{
"name": "tests_workWithUrls",
"version": "1.0.0",
"description": "Tests for the project",
"scripts": {
"format": "prettier . --write",
"lint": "eslint .",
"test": "./node_modules/.bin/mocha --require esm test",
"web-ext": "node_modules/web-ext/bin/web-ext.js run",
"web": "npm exec http-server & firefox http://127.0.0.1:8080/popup/popup.html"
},
"author": "Carlos A Molina",
"license": "Mozilla Public License, version 2.0",
"devDependencies": {
"@eslint/js": "^9.4.0",
"chai": "^4.2.0",
"eslint": "^9.4.0",
"esm": "^3.2.25",
"globals": "^15.3.0",
"http-server": "^14.1.1",
"jsdom": "^16.4.0",
"mocha": "^10.2.0",
"prettier": "3.3.0"
},
"type": "module",
"dependencies": {
"web-ext": "^8.2.0"
}
}