-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.52 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
{
"name": "jest-selenium-browserstack-example",
"version": "0.1.0",
"description": "How to use Jest with Selenium tests on BrowserStack",
"main": "lib/index.js",
"module": "lib/index.esm.js",
"browser": "lib/jest-selenium-browserstack-example.js",
"keywords": [
"javascript",
"selenium",
"browserstack",
"local",
"test",
"jest"
],
"scripts": {
"clean": "rimraf lib",
"test:local": "jest test/local.test.js",
"test:manual": "jest test/manual.test.js",
"test:automate": "jest test/automate.test.js",
"test:parametrized": "jest test/parametrized.test.js",
"test:sequential": "jest test/sequential.test.js",
"lint": "eslint src",
"build": "rollup -c"
},
"author": "Jan Grzegorowski",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"browserstack-local": "^1.3.5",
"eslint": "^5.7.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.1",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^23.6.0",
"jsdom": "^12.2.0",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"rollup": "^0.66.2",
"rollup-plugin-babel": "3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^3.4.0",
"selenium-webdriver": "^4.0.0-alpha.1"
}
}