-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "sauce-connect-launcher",
"description": "A library to download and launch Sauce Connect.",
"version": "1.3.2",
"homepage": "https://github.com/bermi/sauce-connect-launcher",
"author": "Bermi Ferrer <[email protected]>",
"main": "lib/sauce-connect-launcher",
"license": "MIT",
"keywords": [
"selenium",
"sauce connect",
"sauce labs",
"testing",
"local tunnel"
],
"repository": {
"type": "git",
"url": "https://github.com/bermi/sauce-connect-launcher"
},
"scripts": {
"postinstall": "node scripts/install.js || nodejs scripts/install.js",
"test": "npm run test:jest && make test",
"test:jest": "jest --testPathPattern=__tests__ --forceExit",
"version": "git add README.md",
"lint": "make lint"
},
"dependencies": {
"adm-zip": "^0.4.14",
"async": "^3.2.0",
"https-proxy-agent": "^5.0.0",
"lodash": "^4.17.15",
"rimraf": "^3.0.2"
},
"devDependencies": {
"colors": "~1.1.2",
"eslint-plugin-mocha": "^4.8.0",
"expect.js": "^0.3.1",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.9",
"grunt-contrib-watch": "~1.1.0",
"grunt-eslint": "^19.0.0",
"grunt-notify": "~0.4.0",
"grunt-release": "^0.14.0",
"grunt-simple-mocha": "~0.4.0",
"jest": "^24.8.0",
"mocha": "^3.1.2"
},
"engines": {
"node": ">= 4"
},
"sauceConnectLauncher": {
"scVersion": "latest"
}
}