-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "probeit",
"version": "2.1.1",
"description": "Probe HTTP URLs and AWS S3 buckets.",
"main": "lib/index.js",
"types": "lib/src/index.d.ts",
"bin": {
"probeit": "./bin/probeit"
},
"scripts": {
"build": "npm run build:clean && npm run build:webpack",
"build:clean": "rimraf lib/**/*",
"build:watch": "webpack-cli --config webpack.js --watch",
"build:webpack": "webpack-cli --config webpack.js",
"dev": "concurrently \"npm run build:watch\" \"npm run start:watch\"",
"doctoc": "doctoc --notitle --github README.md",
"lint": "eslint \"src/**/*.ts\"",
"lint:watch": "onchange \"src/**/*.ts\" -- npm run lint",
"prepublishOnly": "npm run lint && npm run build",
"start": "node bin/probeit",
"start:watch": "nodemon bin/probeit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlphaHydrae/probeit.git"
},
"keywords": [
"aws",
"check",
"expected",
"health",
"http",
"probe",
"prometheus",
"s3"
],
"author": "Simon Oulevay <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlphaHydrae/probeit/issues"
},
"homepage": "https://github.com/AlphaHydrae/probeit#readme",
"files": [
"bin",
"LICENSE.txt",
"README.md",
"src"
],
"dependencies": {
"aws-sdk": "^2.635.0",
"chalk": "^3.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"inflection": "^1.12.0",
"js-yaml": "^3.13.1",
"koa": "^2.11.0",
"lodash": "^4.17.15",
"log4js": "^6.1.2",
"moment": "^2.24.0",
"native-require": "^1.1.4",
"url-join": "^4.0.1",
"yargs": "^15.3.0"
},
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/inflection": "^1.5.28",
"@types/js-yaml": "^3.12.2",
"@types/koa": "^2.11.2",
"@types/lodash": "^4.14.149",
"@types/node": "^12.12.29",
"@types/url-join": "^4.0.0",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"concurrently": "^5.1.0",
"doctoc": "^1.4.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"nodemon": "^2.0.2",
"onchange": "^6.1.0",
"rimraf": "^3.0.2",
"ts-loader": "^6.2.1",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": ">= 12.0.0 < 13.0.0",
"npm": "^6.13.7"
}
}