Tidy up package.json for LoopBack 1.0.0

This commit is contained in:
Raymond Feng 2013-09-04 16:29:16 -07:00
parent 0666aeccb6
commit cdb7b07a81
1 changed files with 29 additions and 29 deletions

View File

@ -1,31 +1,31 @@
{ {
"name": "loopback-storage-service", "name": "loopback-storage-service",
"description": "Loopback Storage Service", "description": "Loopback Storage Service",
"version": "0.0.1", "version": "1.0.0",
"main": "lib/index.js", "main": "lib/index.js",
"scripts": { "scripts": {
"test": "./node_modules/.bin/mocha --timeout 30000 test/*test.js", "test": "./node_modules/.bin/mocha --timeout 30000 test/*test.js",
"blanket": { "blanket": {
"pattern": "//^((?!(node_modules|test)).)*$/" "pattern": "//^((?!(node_modules|test)).)*$/"
},
"coverage": "mocha -r blanket -R html-cov > coverage_loopback-storage-service.html"
}, },
"dependencies": { "coverage": "mocha -r blanket -R html-cov > coverage_loopback-storage-service.html"
"pkgcloud": "latest", },
"async": "latest" "dependencies": {
}, "pkgcloud": "~0.8.9",
"devDependencies": { "async": "~0.2.9"
"express": "latest", },
"loopback": "git+ssh://git@github.com/strongloop/loopback.git", "devDependencies": {
"formidable": "latest", "express": "~3.3.8",
"mocha": "latest", "loopback": "git+ssh://git@github.com/strongloop/loopback.git",
"supertest": "latest", "formidable": "~1.0.14",
"mkdirp": "latest", "mocha": "~1.12.1",
"blanket": "latest" "supertest": "~0.7.1",
}, "mkdirp": "~0.3.5",
"repository": { "blanket": "~1.1.5"
"type": "git", },
"url": "https://github.com/strongloop/loopback-storage-service.git" "repository": {
} "type": "git",
"url": "https://github.com/strongloop/loopback-storage-service.git"
} },
"license": "MIT"
}