-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.17 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
{
"name": "hermione-sauce-connect",
"version": "0.0.1",
"description": "Plugin for hermione to launch Sauce Connect when integration testing started",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run test-unit && npm run lint",
"test-unit": "mocha test/unit",
"preinstall": "node scripts/preinstall",
"postinstall": "node scripts/postinstall"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/hermione-sauce-connect.git"
},
"keywords": [
"hermione",
"plugin",
"sauce-connect"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/hermione-sauce-connect/issues"
},
"homepage": "https://github.com/gemini-testing/hermione-sauce-connect#readme",
"devDependencies": {
"app-module-path": "^2.2.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.1.0",
"eslint-config-gemini-testing": "^2.8.0",
"mocha": "^6.2.0",
"proxyquire": "^2.1.3",
"qemitter": "^2.0.0",
"sinon": "^7.4.1"
},
"dependencies": {
"gemini-configparser": "^1.0.0",
"lodash": "^4.17.15",
"sauce-connect-launcher": "^1.2.7"
}
}