-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.42 KB
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
{
"name": "@replayweb/testrunner",
"version": "1.0.4",
"description": "Run tests generated via ReplayWeb",
"main": "lib/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"lib"
],
"scripts": {
"build": "babel --root-mode upward src --out-dir lib",
"functional": "wdio wdio.conf.js",
"lint": "eslint src test/unit",
"docs": "jsdoc2md --files src/*.js > src/README.md",
"prepublishOnly": "yarn build",
"test": "BABEL_ENV=test jest -c jest.config.js",
"test:integration": "wdio",
"serve": "http-server test/utilities/"
},
"repository": {
"type": "git",
"url": "https://github.com/intuit/replayweb"
},
"keywords": [
"webdriverio",
"functional",
"selenium",
"replay"
],
"author": "",
"license": "AGPL",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.17",
"@replayweb/utils": "link:../utils",
"@wdio/applitools-service": "^5.12.1",
"deep-equal": "^1.0.1",
"es6-promise": "~4.2.4",
"isomorphic-fetch": "~2.2.1",
"mocha": "~5.2.0",
"tapable": "^1.1.3",
"wdio-video-reporter": "^1.3.4",
"yargs": "~11.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/register": "^7.4.4",
"@wdio/cli": "^5.3.0",
"@wdio/interface": "^5.4.6",
"@wdio/jasmine-framework": "^5.4.14",
"@wdio/junit-reporter": "^5.2.3",
"@wdio/local-runner": "^5.3.0",
"@wdio/mocha-framework": "^5.2.8",
"@wdio/selenium-standalone-service": "^5.2.2",
"@wdio/spec-reporter": "^5.2.3",
"@wdio/sync": "^5.8.1",
"chai": "^4.2.0",
"chai-as-promised": "~7.1.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-mocha": "^5.0.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"fetch-mock": "^7.2.0",
"http-server": "^0.11.1",
"jsdoc-to-markdown": "~4.0.1",
"webdriverio": "^5.3.0"
},
"peerDependencies": {
"@wdio/allure-reporter": "^5.7.11",
"@wdio/cli": "^5.0.0",
"@wdio/junit-reporter": "^5.0.0",
"@wdio/local-runner": "^5.0.0",
"@wdio/mocha-framework": "^5.0.0",
"@wdio/selenium-standalone-service": "^5.0.0",
"@wdio/spec-reporter": "^5.0.0",
"chai": "^4.0",
"webdriverio": "^5.0.0"
}
}