-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.83 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "selenium-brown-bag",
"version": "1.0.0",
"description": "Simple selenium demo",
"main": "src/index.js",
"scripts": {
"start": "node .",
"test": "jest",
"start:dependencies": "docker-compose run start_dependencies",
"test:docker": "docker-compose run test",
"test:selenium": "npm run start:dependencies && npm run test:docker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msyea/selenium-brown-bag.git"
},
"keywords": [
"selenium"
],
"author": "Simon Mayes",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/msyea/selenium-brown-bag/issues"
},
"homepage": "https://github.com/msyea/selenium-brown-bag#readme",
"dependencies": {
"debug": "^4.1.1",
"express": "^4.16.4",
"helmet": "^3.16.0",
"js-yaml": "^3.13.1",
"pug": "^2.0.3",
"selenium-webdriver": "^4.0.0-alpha.1",
"swagger-tools": "^0.10.4"
},
"devDependencies": {
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"jest": "^24.7.1",
"nodemon": "^1.18.11",
"prettier": "^1.17.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
]
},
"env": {
"es6": true,
"node": true,
"jest": true
}
},
"jest": {
"collectCoverageFrom": [
"src/**",
"!**/node_modules/**"
],
"coverageThreshold": {
"src/": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": -10
}
}
}
}