-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
105 lines (105 loc) · 2.22 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "firefox-profile",
"version": "4.7.0",
"description": "firefox profile for selenium WebDriverJs, admc/wd or any other node selenium driver that supports capabilities",
"main": "lib/firefox_profile",
"types": "lib/firefox_profile.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "grunt travis",
"blanket": {
"pattern": [
"/lib/firefox_profile"
]
}
},
"bin": {
"firefox-profile": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/saadtazi/firefox-profile-js.git"
},
"keywords": [
"selenium",
"webdriver",
"firefox",
"firefox profile",
"nodejs"
],
"author": "Saad Tazi",
"license": "MIT",
"bugs": {
"url": "https://github.com/saadtazi/firefox-profile-js/issues"
},
"contributors": [
{
"name": "testingbot",
"url": "http://www.testingbot.com"
},
{
"name": "David Sturley",
"url": "https://github.com/circusbred"
},
{
"name": "Jordan Santell",
"url": "http://jsantell.com"
},
{
"name": "Piotr Kuczynski",
"url": "https://github.com/pkuczynski"
},
{
"name": "halo2376",
"url": "https://github.com/halo2376"
},
{
"name": "XrXr",
"url": "https://github.com/XrXr"
},
{
"name": "Christoph Dorn",
"url": "http://www.christophdorn.com/"
},
{
"name": "Holger Benl",
"url": "https://github.com/hbenl"
},
{
"name": "Federico",
"url": "https://github.com/fregante"
},
{
"name": "Luca Greco",
"url": "https://github.com/rpl"
}
],
"devDependencies": {
"blanket": "~1.2.x",
"chai": "~1.9.x",
"chai-as-promised": "~4.2.x",
"chai-fs": "~0.1.x",
"grunt": "^1.0.4",
"grunt-apidox": "~0.1.4",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-cov": "^0.4.0",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "1.3.0",
"request": "^2.88.0",
"sinon": "~1.12.x",
"sinon-chai": "~2.7.x",
"wd": "^1.11.4"
},
"dependencies": {
"adm-zip": "~0.5.x",
"fs-extra": "^11.2.0",
"ini": "^4.1.3",
"minimist": "^1.2.8",
"xml2js": "^0.6.2"
},
"engines": {
"node": ">=18"
}
}