forked from aikoven/riemann-statsd-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 900 Bytes
/
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
{
"name": "riemann-statsd-backend",
"version": "0.2.2",
"description": "StatsD backend for Riemann",
"main": "lib/index.js",
"files": [
"src",
"lib",
"proto"
],
"repository": "https://github.com/aikoven/riemann-statsd-backend",
"author": "Daniel Lytkin <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf lib",
"build:proto-js": "pbjs -t static-module -w commonjs -o proto/Riemann.js proto/Riemann.proto",
"build:proto-ts": "pbts -o proto/Riemann.d.ts proto/Riemann.js",
"build:proto": "npm run build:proto-js && npm run build:proto-ts",
"build:ts": "tsc",
"build": "npm run build:proto && npm run build:ts",
"prepare": "npm run clean && npm run build"
},
"dependencies": {
"protobufjs": "~6.8.2"
},
"devDependencies": {
"@types/node": "^7.0.8",
"rimraf": "^2.6.2",
"typescript": "~2.6.2"
}
}