-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "webext-helpers",
"version": "3.0.8",
"description": "Cross-browser helper utility functions for MV3 & MV2 web extensions.",
"keywords": [
"browser",
"extension",
"webextension",
"webext",
"web-ext",
"helpers",
"helper",
"utility",
"utilities",
"functions",
"manifest-v3",
"mv3"
],
"source": "src/index.js",
"main": "dist/main.js",
"module": "dist/module.js",
"scripts": {
"watch": "parcel watch",
"build": "parcel build --no-source-maps",
"prepare": "npm run build",
"test": "jest"
},
"files": [
"dist"
],
"jest": {
"testEnvironment": "jsdom"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tdriley/webext-helpers.git"
},
"author": "Tom Riley <[email protected]> (https://tomriley.net/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/tdriley/webext-helpers/issues"
},
"homepage": "https://github.com/tdriley/webext-helpers#readme",
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.8",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"parcel": "^2.11.0"
}
}