forked from browserstack/browserstack-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 809 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
{
"name": "browserstack-runner",
"description": "A command line interface to run browser tests over BrowserStack",
"version": "0.3.0",
"homepage": "https://github.com/browserstack/browserstack-runner",
"repository": {
"type": "git",
"url": "https://github.com/browserstack/browserstack-runner.git"
},
"dependencies": {
"browserstack": "1.1.0",
"chalk": "0.4.0",
"tunnel": "0.0.3"
},
"devDependencies": {
"jshint": "2.5.6",
"mocha": "1.15.1"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/browserstack/browserstack-runner/blob/master/MIT-LICENSE.txt"
}
],
"bin": {
"browserstack-runner": "bin/cli.js"
},
"scripts": {
"test": "node_modules/.bin/mocha tests/unit && node_modules/.bin/jshint lib/*.js bin/"
}
}