-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.51 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
{
"name": "@toolisticon/ssl-hostinfo-prometheus-exporter",
"version": "2.1.13",
"description": "",
"main": "index.js",
"bin": {
"ssl-hostinfo-prom": "app.js"
},
"scripts": {
"clean": "npm i",
"build": "webpack --config webpack.config.js --progress",
"debug": "node --inspect-brk index.js",
"start": "node index.js",
"watch": "nodemon node index.js",
"lint": "eslint --fix --ignore-pattern=dist .",
"pretest": "npm run lint",
"test": "npm run jasmine-test && npm run end2end-test",
"jasmine-test": "jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"jasmine-test:watch": "nodemon jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"jasmine-test:debug": "node --inspect-brk -i node_modules/jasmine/bin/jasmine.js spec/prometheus.spec.js",
"preend2end-test": "docker build -t toolisticon/ssl-hostinfo-prometheus-exporter . && cd test/setup && docker-compose up -d --force-recreate && sleep 30",
"end2end-test": "jasmine JASMINE_CONFIG_PATH=test/jasmine-e2e.json",
"postend2end-test": "cd test/setup && docker-compose stop && docker-compose rm -f -s -v && docker volume prune -f",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:add": "git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md'",
"update-env": "echo \"VERSION=$(node -p \"require('./package.json').version\")\" > .env",
"update-env:add": "git add .env && git commit -m 'updated .env'",
"release": "npm run test",
"release:major": "npm run release && npm version major && npm run version-and-push",
"release:minor": "npm run release && npm version minor && npm run version-and-push",
"release:patch": "npm run release && npm version patch && npm run version-and-push",
"version-and-push": "npm run changelog && npm run changelog:add && npm run update-env && npm run update-env:add && git push origin && git push origin --tags && git checkout master && git merge develop && git push && git checkout develop"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toolisticon/ssl-hostinfo-prometheus-exporter.git"
},
"apps": [
{
"merge_logs": true,
"max_memory_restart": "200M",
"script": "dist/app.js"
}
],
"keywords": [
"ssl",
"prometheus",
"metrics",
"pmx"
],
"author": "Martin Reinhardt",
"contributor": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/toolisticon/ssl-hostinfo-prometheus-exporter/issues"
},
"homepage": "https://github.com/toolisticon/ssl-hostinfo-prometheus-exporter",
"dependencies": {
"cron": "^3.0.0",
"date-fns": "^2.29.3",
"log4bro": "^3.18.0",
"node-fetch": "^2.6.9",
"ssl-checker": "^2.0.7"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"axios": "^1.1.3",
"babel-loader": "^9.0.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^4.0.0",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.1.0",
"eslint-config-semistandard": "^17.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jasmine": "^4.1.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.26.1",
"jasmine": "^5.0.0",
"nodemon": "^3.0.0",
"webpack": "^5.60.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^5.0.0",
"webpack-node-externals": "^3.0.0"
}
}