-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "librato-node",
"version": "5.0.6",
"description": "A node.js client for Librato Metrics (http://metrics.librato.com/)",
"homepage": "http://goodeggs.github.com/librato-node/",
"main": "lib/librato",
"repository": {
"type": "git",
"url": "git://github.com/goodeggs/librato-node.git"
},
"keywords": [
"librato",
"metrics",
"express"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"lodash": "^4.17.11",
"requestretry": "^1.12.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coffeescript": "^1.8.0",
"mocha": "7",
"mocha-sinon": "^2.1.2",
"nock": "^9.6.1",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.2.8"
},
"scripts": {
"build": "yarn run build:clean && yarn run build:transpile",
"build:clean": "rm -rf lib",
"build:transpile": "yarn run coffee -c -m -o lib src",
"prepublishOnly": "yarn run build",
"postversion": "git push --follow-tags",
"pretest": "yarn run build",
"test": "NODE_ENV=test yarn run mocha --opts mocha.opts test/*.coffee"
}
}