forked from groupon/testium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
{
"name": "testium",
"version": "3.3.1",
"description": "Synchronous integration testing with Node.js bindings for WebDriver",
"license": "BSD-3-Clause",
"keywords": [
"testing",
"selenium",
"webdriver"
],
"homepage": "https://github.com/groupon-testium/testium",
"bugs": {
"url": "https://github.com/groupon-testium/testium/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/groupon-testium/testium"
},
"author": {
"name": "Sean Massa",
"email": "[email protected]"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"license": {
"exclude": [
"cli.js",
"lib",
"test"
]
}
},
"main": "lib/testium.js",
"bin": "cli.js",
"scripts": {
"test": "make all"
},
"engines": {
"node": ">=0.10.16"
},
"dependencies": {
"assertive": "^1.4.0",
"debug": "^2.1.0",
"lodash": "^4.17.15",
"mkdirp": "~0.5.0",
"selenium-download": "^2.0.0",
"testium-core": "^1.3.0",
"testium-driver-sync": "^2.1.0",
"testium-mocha": "^1.0.0"
},
"devDependencies": {
"coffee-script": "1.9.3",
"mocha": "^2.3.3",
"npub": "^2.2.0",
"rimraf": "^2.2.8",
"testium-example-app": "^2.0.0"
}
}