forked from goodeggs/chai-webdriver
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
45 lines (45 loc) · 1.01 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
{
"name": "chai-webdriver-promised",
"version": "4.0.3",
"description": "Build more expressive integration tests with some webdriver sugar for chai.js",
"main": "index.js",
"homepage": "https://b3nj4m.github.io/chai-webdriver",
"scripts": {
"test": "mocha -R spec spec/*.spec.js"
},
"repository": {
"type": "git",
"url": "https://github.com/b3nj4m/chai-webdriver.git"
},
"keywords": [
"chai",
"webdriver",
"integration-tests",
"chai-plugin"
],
"author": "Ben Robbins <ben.robbins@gmail.com>",
"contributors": [
"Max Edmands"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/b3nj4m/chai-webdriver/issues"
},
"peerDependencies": {
"selenium-webdriver": "2.x",
"chai": "1.x"
},
"dependencies": {
"q": "~1.1.2",
"webdriver-sizzle-promised": "~2.0.2"
},
"devDependencies": {
"phantomjs": "^1.9.7-1",
"mocha": "~2.0.1",
"chai": "~1.10.0",
"selenium-webdriver": "~2.44.0"
},
"engines": {
"node": ">=0.10.0"
}
}