-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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": "codeceptjs-selenoid",
"version": "1.0.0",
"description": "Selenoid plugin with video recording capabilities for CodeceptJS",
"main": "lib/index.js",
"scripts": {
"lint": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"codeceptJS",
"codeceptjs",
"selenoid",
"selenoid-plugin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/koushikmohan1996/codeceptjs-selenoid.git"
},
"author": "Koushik Mohan",
"license": "ISC",
"bugs": {
"url": "https://github.com/koushikmohan1996/codeceptjs-selenoid/issues"
},
"homepage": "https://github.com/koushikmohan1996/codeceptjs-selenoid#readme",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^4.0.1"
},
"dependencies": {
"axios": "^0.19.1",
"codeceptjs": "^2.3.6"
},
"husky": {
"hooks": {
"pre-commit": "eslint ./lib/ --fix"
}
}
}