-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.27 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.27 KB
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
{
"name": "@gridplus/docker-events",
"version": "1.0.0",
"description": "Enables the consumption of docker events as a node event emitter",
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist/* && babel src -d dist",
"lint": "eslint src __tests__",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/GridPlus/docker-events.git"
},
"keywords": [
"docker",
"event",
"monitor"
],
"author": "Daniel Veenstra",
"license": "ISC",
"bugs": {
"url": "https://github.com/GridPlus/docker-events/issues"
},
"homepage": "https://github.com/GridPlus/docker-events#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.21.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0"
},
"dependencies": {
"debug": "^3.1.0",
"llog": "^0.1.1",
"pino": "^5.0.4"
}
}