-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "webdriverio-recorder-extension",
"version": "0.5.1",
"author": "Christian Bromann <[email protected]>",
"description": "WebdriverIO Extension for Devtools that allows you to export tests directly from the Recorder panel.",
"homepage": "https://github.com/webdriverio/recorder-extension#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/recorder-extension.git"
},
"bugs": {
"url": "https://github.com/webdriverio/recorder-extension/issues"
},
"keywords": [
"webdriverio",
"wdio",
"chrome",
"extension",
"automation"
],
"license": "MIT",
"type": "module",
"scripts": {
"build": "run-s clean build:*",
"build:preprocess": "./preprocessExtension.sh",
"build:bundle": "rollup --config rollup.config.js",
"build:crx": "crx pack dist -o ./extension.crx",
"clean": "rimraf dist extension.crx"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.2",
"crx": "^5.0.1",
"npm-run-all2": "^6.1.2",
"rimraf": "^5.0.1",
"rollup": "^3.23.0"
},
"dependencies": {
"@wdio/chrome-recorder": "^0.5.2"
},
"private": true
}