This repository has been archived by the owner on Jun 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"name": "@bufferapp/ekg",
"version": "0.1.2",
"description": "Health and liveness checks",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack.config.js --progress --profile --colors",
"build-stats": "webpack --env production --json > stats.json",
"serve": "node src/serve.js",
"test": "jest",
"test-watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bufferapp/EKG.git"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true
},
"plugins": ["prettier"],
"rules": {
"prettier/prettier": [
2,
{
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"bracketSpacing": true
}
],
"no-unused-vars": 2
}
},
"keywords": ["kubernetes", "heathcheck"],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/bufferapp/EKG/issues"
},
"homepage": "https://github.com/bufferapp/EKG#readme",
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.18.1",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.2",
"prettier": "^1.11.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"test-listen": "^1.1.0",
"then-sleep": "^1.0.1",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.10"
},
"dependencies": {
"joi": "^13.1.2",
"micro": "^9.1.0",
"micro-visualize": "^3.0.1",
"microrouter": "^3.0.0",
"mongodb-core": "^2.1.19"
},
"files": ["src/"],
"publishConfig": {
"access": "public"
}
}