-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.1 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
{
"name": "prometheus-client",
"version": "0.1.1",
"description": "Metrics provider for Prometheus",
"keywords": ["prometheus","metrics"],
"homepage": "https://github.com/StreamMachine/prometheus_client_nodejs/",
"author": {"name": "Eric Richardson", "url": "http://ewr.is"},
"repository": {"type": "git", "url": "https://github.com/StreamMachine/prometheus_client_nodejs.git"},
"main": "./index.js",
"license": "apache2",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"underscore": "~1.7.0",
"debug": "~2.1.2",
"express": "~4.12.3",
"object-hash": "~0.5.0"
},
"scripts": {
"test": "grunt && ./node_modules/.bin/mocha test/",
"prepublish": "grunt"
},
"devDependencies": {
"coffee-script": "~1.7.1",
"mocha": "~2.1.0",
"chai": "~2.1.0",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-coffee": "^0.12.0"
}
}