-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.03 KB
/
package.json
File metadata and controls
47 lines (47 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
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "gobgp",
"description": "gobgp library - NodeJS client for gobgpd",
"version": "0.1.6",
"author": {
"name": "Shintaro Kojima",
"email": "goodies@codeout.net",
"url": "http://github.com/codeout"
},
"license": "MIT",
"keywords": [
"gobgp",
"client",
"bgp",
"flowspec"
],
"repository": {
"type": "git",
"url": "git://github.com/codeout/gobgp-node.git"
},
"bugs": {
"url": "https://github.com/codeout/gobgp-node/issues"
},
"dependencies": {
"grpc": "^1.9.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.2",
"eslint": "^4.18.2",
"mocha": "^3.5.3"
},
"main": "index.js",
"scripts": {
"lint": "eslint src test",
"build": "babel src/gobgp.js -o index.js",
"watch": "babel src/gobgp.js -wo index.js",
"rebuild": "node-gyp rebuild && babel src/gobgp.js -o index.js",
"test": "mocha --compilers js:babel-core/register"
},
"babel": {
"presets": [
"es2015"
]
}
}