-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.47 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
{
"name": "wait-for-blah",
"version": "1.1.4",
"description": "An elegant utility that waits for docker containers to be ready by monitoring their stdout",
"main": "index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/msyea/wait-for-blah.git"
},
"keywords": [
"docker"
],
"author": "Simon Mayes <simon@msyea.co.uk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/msyea/wait-for-blah/issues"
},
"homepage": "https://github.com/msyea/wait-for-blah#readme",
"devDependencies": {
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"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
}
}
}
}