-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.03 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.03 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
{
"name": "uptime-prometheus-exporter",
"version": "1.0.0",
"description": "Storyous Prometheus exporter of aggregated data from profilers in redis.",
"main": "bin/run.js",
"scripts": {
"start": "node ./bin/run.js ",
"test": "./node_modules/mocha/bin/mocha --opts ./mocha.opts",
"lint": "node ./node_modules/eslint/bin/eslint.js ./app/**/*.js ./test/**/*.js",
"postinstall": "true",
"all": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Storyous/uptime-prometheus-exporter.git"
},
"author": "Storyous",
"license": "ISC",
"bugs": {
"url": "https://github.com/Storyous/uptime-prometheus-exporter/issues"
},
"homepage": "https://github.com/Storyous/uptime-prometheus-exporter#readme",
"devDependencies": {
"eslint": "^2.7.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-plugin-react": "^4.2.3"
},
"dependencies": {
"co": "^4.6.0",
"config": "^1.21.0",
"koa": "^1.2.0",
"request": "^2.74.0",
"url": "^0.11.0"
}
}