.eslintrc
0 → 100644
+29
−0
package.json
0 → 100644
+38
−0
| Original line number | Diff line number | Diff line |
|---|---|---|
{
|
||
"name": "kinetic-js",
|
||
"version": "1.0.0",
|
||
"description": "Library for the Kinetic open storage protocol",
|
||
"repository": "Kinetic/kinetic-js",
|
||
"contributors": [
|
||
{ "name": "Antonin Coulibaly", "email": "" },
|
||
{ "name": "David Pineau", "email": "" },
|
||
{ "name": "Michael Zapata", "email": "" },
|
||
{ "name": "Adrien Vergé", "email": "" }
|
||
],
|
||
"license": "Mozilla 2.0",
|
||
"bugs": {
|
||
"url": "https://github.com/Kinetic/kinetic-js/issues"
|
||
},
|
||
"homepage": "https://github.com/Kinetic/kinetic-js#readme",
|
||
"keywords": [
|
||
"kinetic",
|
||
"protocol"
|
||
],
|
||
"dependencies": {
|
||
"protobufjs": "^4.0.0",
|
||
"winston": "^1.1.0"
|
||
},
|
||
"devDependencies": {
|
||
"babel": "^5.8.23",
|
||
"babel-eslint": "^4.1.3",
|
||
"eslint": "^1.5.1",
|
||
"eslint-config-airbnb": "^0.0.9",
|
||
"mocha": "^2.3.3"
|
||
},
|
||
"scripts": {
|
||
"lint": "eslint $(git ls-files '*.js')",
|
||
"test": "mocha -r babel/register tests/unit",
|
||
"tests_functional": "make -C tests/functional"
|
||
},
|
||
"private": false
|
||
} |
Loading