-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.09 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
{
"name": "webdriverjs-example",
"version": "1.1.1",
"description": "Example tests using webdriverjs",
"engines": {
"node": ">=16"
},
"standard": {
"globals": [
"expect",
"beforeAll",
"afterAll",
"describe",
"test",
"beforeEach",
"afterEach"
]
},
"jest": {
"testMatch": [
"**/tests/**/*.[jt]s?(x)"
],
"testTimeout": 90000,
"verbose": true
},
"scripts": {
"prejest": "jest --clearCache",
"jest": "jest",
"test": "npm run jest",
"ci": "npm run jest",
"watch": "npm run jest --watchAll",
"watch:api": "npm run jest tests/apiTest.js --watch",
"pretty": "npx standard --fix"
},
"author": "brine",
"license": "MIT",
"dependencies": {
"babel-jest": "^29.5.0",
"chromedriver": "^113.0.0",
"jest": "^29.5.0",
"selenium-webdriver": "^4.10.0"
},
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-object-rest-spread": "^7.15.6",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6"
}
}