-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 911 Bytes
/
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
{
"name": "selenium-grid",
"version": "0.5.0",
"description": "simply run functional tests in a selenium grid",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"bin": {
"selenium-grid": "./bin/selenium-grid"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha tests/*Test.js tests/**/*Test.js --check-leaks --reporter spec"
},
"repository": "git://github.com/themouette/selenium-grid.git",
"author": "Julien Muetton <themouette>",
"license": "MIT",
"readmeFilename": "README.readme",
"devDependencies": {
"chai": "~1.7.2",
"mocha": "~1.12.0",
"nock": "~0.18.2",
"sinon": "~1.7.3",
"minimatch": "~0.2.12",
"commander": "~2.0.0"
},
"dependencies": {
"htmlparser": "~1.7.6",
"lodash": "~1.3.1",
"async": "~0.2.9",
"wd": "~0.1.4",
"minimatch": "~0.2.12",
"commander": "~2.0.0",
"chai": "~1.7.2"
}
}