-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.56 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
{
"name": "statuscake-exporter",
"version": "0.1.0",
"description": "Collects metrics from Statuscake and exposes them on /metrics\"",
"main": "dist/index.js",
"repository": "https://github.com/robsonke/statuscake-exporter.git",
"author": "R. Sonke <[email protected]>",
"license": "MIT",
"scripts": {
"debug": "./node_modules/.bin/nodemon --debug-brk=9000 --expose_debug_as=v8debug ./dist/index.js",
"build": "rm -rf dist/* && (mkdir dist || true) && cp package.json README.md dist && ./node_modules/.bin/tsc -p tsconfig.build.json",
"lint": "./node_modules/.bin/tslint -e **/node_modules/** --project tsconfig.json",
"watch": "rm -rf dist/* && (mkdir dist || true) && cp package.json README.md dist && ./node_modules/.bin/tsc -p tsconfig.json -w",
"clean": "rm -rf dist/*"
},
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"js-yaml": "^3.10.0",
"json-stream": "^1.0.0",
"prom-client": "^10.2.2",
"reflect-metadata": "^0.1.10",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"routing-controllers": "^0.9.0",
"rxjs": "^5.5.6",
"typedi": "^0.6.0",
"upath": "1.0.5",
"winston": "^2.4.0",
"yaml": "^0.3.0",
"diff": ">=3.5.0"
},
"devDependencies": {
"@types/body-parser": "^1.16.8",
"@types/express": "^4.0.39",
"@types/js-yaml": "^3.10.1",
"@types/mocha": "^2.2.44",
"@types/request": "^2.0.8",
"@types/request-promise": "^4.1.39",
"@types/winston": "^2.3.7",
"nodemon": "^2.0.19",
"tslint": "^5.7.0",
"typescript": "^2.6.2"
}
}