update deps, remove the need for npm links

This commit is contained in:
David Dias 2015-07-19 14:36:24 -07:00
parent 1defb0f402
commit 1a25932696
3 changed files with 18 additions and 2 deletions

1
.jshintignore Normal file
View File

@ -0,0 +1 @@
node_modules

10
.jshintrc Normal file
View File

@ -0,0 +1,10 @@
{
"node": true,
"curly": true,
"latedef": true,
"quotmark": true,
"undef": true,
"unused": true,
"trailing": true
}

View File

@ -6,7 +6,9 @@
"scripts": {
"test": "./node_modules/.bin/lab tests/*-test.js",
"coverage": "./node_modules/.bin/lab -t 100 tests/*-test.js",
"codestyle": "./node_modules/.bin/standard --format"
"codestyle": "./node_modules/.bin/standard --format",
"lint": "jshint .",
"validate": "npm ls"
},
"repository": {
"type": "git",
@ -35,10 +37,13 @@
"dependencies": {
"async": "^1.3.0",
"ip-address": "^4.0.0",
"ipfs-logger": "^0.1.0",
"ipfs-peer": "^0.3.0",
"ipfs-peer-id": "^0.3.0",
"multiaddr": "^1.0.0",
"multiplex-stream-muxer": "^0.2.0",
"multistream-select": "^0.6.1",
"protocol-buffers-stream": "^1.2.0",
"spdy-stream-muxer": "^0.2.0"
"spdy-stream-muxer": "^0.4.0"
}
}