-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.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
{
"name": "@cfware/tap-selenium-manager",
"version": "1.1.0",
"description": "Selenium Manager for tap",
"main": "index.js",
"type": "module",
"scripts": {
"pretest": "cfware-lint .",
"test": "npm run -s tests-only",
"tests-only": "cross-env NODE_OPTIONS='--experimental-loader @istanbuljs/esm-loader-hook' nyc -s node test.js|tap-yaml-summary",
"posttest": "nyc report --check-coverage"
},
"engines": {
"node": ">=14.0.0"
},
"author": "Corey Farrell",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cfware/tap-selenium-manager.git"
},
"bugs": {
"url": "https://github.com/cfware/tap-selenium-manager/issues"
},
"homepage": "https://github.com/cfware/tap-selenium-manager#readme",
"dependencies": {
"istanbul-lib-coverage": "^3.0.0",
"pngjs": "^5.0.0",
"selenium-webdriver": "^4.0.0-alpha.5"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@cfware/lint": "^1.1.2",
"@cfware/nyc": "^0.7.0",
"@istanbuljs/esm-loader-hook": "^0.1.0",
"babel-plugin-istanbul": "^6.0.0",
"cross-env": "^7.0.2",
"fastify": "^2.11.0",
"fastify-babel": "^1.3.0",
"fastify-static": "^2.6.0",
"geckodriver": "^1.19.1",
"libtap": "^0.3.0",
"nyc": "^15.0.0",
"tap-yaml-summary": "^0.1.0"
}
}