forked from wxt-dev/web-ext-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "web-ext-run",
"version": "0.2.0",
"description": "A tool to open and run web extensions",
"type": "module",
"main": "index.js",
"exports": {
".": "./index.js",
"./util/adb": "./lib/util/adb.js",
"./util/logger": "./lib/util/logger.js"
},
"files": [
"index.js",
"lib/**"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"engine-strict": true,
"scripts": {
"build": "node scripts/build",
"start": "node scripts/develop",
"test": "node scripts/test",
"test-coverage": "node scripts/test --coverage",
"test-functional": "node scripts/test-functional",
"prettier": "prettier --write '**'",
"prettier-ci": "prettier --list-different '**' || (echo '\n\nThis failure means you did not run `npm run prettier-dev` before committing\n\n' && exit 1)",
"prettier-dev": "pretty-quick --branch master"
},
"homepage": "https://github.com/aklinker1/web-ext-run",
"repository": {
"type": "git",
"url": "git://github.com/aklinker1/web-ext-run.git"
},
"bugs": {
"url": "http://github.com/aklinker1/web-ext-run/issues"
},
"keywords": [
"web",
"extensions",
"web extensions",
"browser extensions",
"firefox",
"mozilla",
"add-ons",
"google",
"chrome",
"opera"
],
"dependencies": {
"@babel/runtime": "7.23.9",
"@devicefarmer/adbkit": "3.2.6",
"bunyan": "1.8.15",
"chrome-launcher": "1.1.0",
"debounce": "1.2.1",
"es6-error": "4.1.1",
"firefox-profile": "4.5.0",
"fs-extra": "11.2.0",
"fx-runner": "1.4.0",
"mkdirp": "1.0.4",
"multimatch": "6.0.0",
"mz": "2.7.0",
"node-notifier": "10.0.1",
"parse-json": "7.1.1",
"promise-toolbox": "0.21.0",
"set-value": "4.1.0",
"source-map-support": "0.5.21",
"strip-bom": "5.0.0",
"strip-json-comments": "5.0.1",
"tmp": "0.2.1",
"update-notifier": "6.0.2",
"watchpack": "2.4.0",
"ws": "8.16.0",
"zip-dir": "2.0.0"
},
"devDependencies": {
"@babel/cli": "7.23.9",
"@babel/core": "7.23.9",
"@babel/eslint-parser": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/register": "7.23.7",
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
"babel-plugin-istanbul": "6.1.1",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"chai": "4.3.10",
"chai-as-promised": "7.1.1",
"copy-dir": "1.3.0",
"crc-32": "1.2.2",
"cross-env": "7.0.3",
"deepcopy": "2.1.0",
"eslint": "8.56.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "2.29.1",
"git-rev-sync": "3.0.2",
"html-entities": "2.4.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"prettier": "3.2.4",
"pretty-quick": "4.0.0",
"prettyjson": "1.2.5",
"shelljs": "0.8.5",
"sinon": "17.0.1",
"testdouble": "3.20.1",
"yauzl": "2.10.0"
},
"author": "Kumar McMillan",
"license": "MPL-2.0",
"nyc": {
"include": "src/**/*.js",
"reporter": [
"lcov",
"text"
]
}
}