-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "@testplane/browser-version-changer",
"version": "1.0.0",
"description": "Plugin for testplane to manage browser version for each test",
"main": "lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "npm run test-unit && npm run lint",
"test-unit": "mocha --recursive --require ./test/setup",
"release": "standard-version"
},
"engines": {
"node": ">= 8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/testplane-browser-version-changer.git"
},
"keywords": [
"testplane",
"hermione",
"plugin",
"browser",
"version"
],
"author": "Tikvach Alexander <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gemini-testing/testplane-browser-version-changer/issues"
},
"homepage": "https://github.com/gemini-testing/testplane-browser-version-changer#readme",
"dependencies": {
"gemini-configparser": "^1.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"chai": "^4.2.0",
"conventional-changelog-lint": "^2.1.1",
"eslint": "^6.8.0",
"eslint-config-gemini-testing": "^2.8.0",
"eventemitter2": "^6.4.7",
"husky": "^4.2.5",
"mocha": "^7.2.0",
"sinon": "^9.0.2",
"standard-version": "^8.0.0"
}
}