-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
51 lines (51 loc) · 1.32 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
51
{
"name": "nemo-core",
"version": "1.1.3",
"description": "Node.js based configuration and plugin platform for selenium-webdriver",
"scripts": {
"test": "npm run lint && mocha --timeout 30000 ",
"test:default": "npm run lint && mocha --timeout 30000 --reporter spec",
"lint": "eslint --fix lib/* examples/* test/**/* --ext .json"
},
"dependencies": {
"async": "^2.6.2",
"confit": "^2.0.0",
"debug": "^4.1.1",
"lodash": "^4.17.11",
"selenium-webdriver": "^3.4.0",
"shortstop-handlers": "^1.0.0",
"yargs": "^13.2.4"
},
"main": "index.js",
"devDependencies": {
"chai": "^4.2.0",
"chromedriver": "^79.0.3",
"eslint": "^5.16.0",
"eslint-plugin-json": "^1.4.0",
"geckodriver": "^1.16.2",
"mocha": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git://github.com/paypal/nemo-core.git"
},
"keywords": [
"Selenium, Automation"
],
"engines": {
"node": ">= 6.0.0"
},
"author": "Matt Edelman <medelman@paypal.com>",
"contributors": [
"Matt Edelman <medelman@paypal.com>",
"Nilesh Kulkarni <nikulkarni@paypal.com>",
"Shay Davidson <shay.h.davidson@gmail.com>",
"Ashwin Hegde <ashegde@paypal.com>"
],
"licenses": [
{
"type": "Apache 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
]
}