forked from scottgonzalez/node-browserstack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "browserstack",
"title": "BrowserStack Client",
"description": "A client for working with the BrowserStack APIs.",
"version": "1.5.0",
"homepage": "https://github.com/scottgonzalez/node-browserstack",
"author": "Scott González <[email protected]> (http://scottgonzalez.com)",
"contributors": [
"Simon Tarchichi <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/scottgonzalez/node-browserstack.git"
},
"bugs": "https://github.com/scottgonzalez/node-browserstack/issues",
"licence": "MIT",
"dependencies": {
"https-proxy-agent": "1.0.0"
},
"devDependencies": {
"jscs": "2.8.0",
"jshint": "2.8.0",
"mocha": "2.4.5",
"should": "8.2.1"
},
"main": "lib/browserstack.js",
"scripts": {
"jscs": "jscs lib/* test/*",
"jscs-fix": "jscs lib/* test/* --fix",
"jshint": "jshint lib/* test/*",
"lint": "npm run jscs && npm run jshint",
"test": "npm run lint && mocha"
},
"keywords": [
"automation",
"browser",
"browserstack",
"screenshot",
"testing"
]
}