Skip to content

Commit 1ebbeb2

Browse files
committed
Bootstrapping
0 parents  commit 1ebbeb2

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "airbnb-base"
3+
}

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/package-lock.json
2+
/node_modules/

package.json

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
{
2+
"name": "fbp-client",
3+
"version": "0.1.0",
4+
"description": "Higher-level client library for the FBP protocol",
5+
"main": "index.js",
6+
"scripts": {
7+
"pretest": "eslint *.js lib/*.js",
8+
"test": "mocha --reporter spec spec/*.js"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "git://github.com/flowbased/fbp-client.git"
13+
},
14+
"keywords": [
15+
"fbp",
16+
"client",
17+
"protocol",
18+
"noflo"
19+
],
20+
"author": "Henri Bergius <[email protected]>",
21+
"license": "MIT",
22+
"bugs": {
23+
"url": "https://github.com/flowbased/fbp-client/issues"
24+
},
25+
"homepage": "https://github.com/flowbased/fbp-client#readme",
26+
"dependencies": {
27+
"fbp-protocol": "^0.8.1",
28+
"fbp-protocol-client": "^0.2.2"
29+
},
30+
"devDependencies": {
31+
"chai": "^4.1.2",
32+
"eslint": "^4.19.0",
33+
"eslint-config-airbnb-base": "^12.1.0",
34+
"eslint-plugin-import": "^2.9.0",
35+
"mocha": "^5.0.4"
36+
}
37+
}

0 commit comments

Comments
 (0)