-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.27 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": "librato",
"version": "0.1.1",
"description": "Librato client for Node",
"main": "lib/index.js",
"directories": {
"test": "test",
"src": "src",
"lib": "lib"
},
"scripts": {
"build": "coffee --bare --compile --output lib/ src/*.litcoffee",
"nsp": "nsp check",
"prepublish": "coffee --bare --compile --output lib/ src/*.litcoffee",
"postpublish": "rm -rf lib/*",
"test": "mocha -w -b -c --check-leaks test/suite.coffee -R progress --compilers coffee:coffee-script/register",
"test-drone": "INTEGRATION_TEST=true node_modules/.bin/mocha -b -c --check-leaks test/suite.coffee -R spec --compilers coffee:coffee-script/register"
},
"repository": {
"type": "git",
"url": "git://github.com/Turistforeningen/node-librato.git"
},
"keywords": [
"Librato",
"Metrics",
"Logging",
"Statistic",
"Statistics",
"Stats"
],
"author": "Hans Kristian Flaatten <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Turistforeningen/node-librato/issues"
},
"homepage": "https://github.com/Turistforeningen/node-librato",
"devDependencies": {
"coffee-script": "~1",
"mocha": "~2"
},
"dependencies": {
"nsp": "^2.8.0",
"request": "~2.81"
}
}