-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "kinetic-js",
"version": "1.0.0",
"description": "Library for the Kinetic Open Storage Protocol",
"repository": "Kinetic/kinetic-js",
"contributors": [
{ "name": "Antonin Coulibaly",
"email": "[email protected]" },
{ "name": "David Pineau",
"email": "[email protected]" },
{ "name": "Michael Zapata",
"email": "[email protected]" },
{ "name": "Adrien Vergé",
"email": "[email protected]" }
],
"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 './lib/*.js' './tests/*/*.js')",
"test": "mocha -r babel/register tests/unit",
"tests_functional": "make -C tests/functional"
},
"private": false
}