Merge pull request #169 from hybridgroup/clean-up-package-json
Clean up package.json
This commit is contained in:
commit
9b086c4502
46
package.json
46
package.json
|
@ -5,20 +5,25 @@
|
||||||
"description": "A JavaScript robotics framework using Node.js",
|
"description": "A JavaScript robotics framework using Node.js",
|
||||||
"homepage": "http://cylonjs.com",
|
"homepage": "http://cylonjs.com",
|
||||||
"bugs": "https://github.com/hybridgroup/cylon/issues",
|
"bugs": "https://github.com/hybridgroup/cylon/issues",
|
||||||
"author": {
|
|
||||||
"name": "Ron Evans, Andrew Stewart, Edgar Silva, Mario 'Kuroir' Ricalde, Gize Bonilla, Adrian Zankich",
|
"author": "The Hybrid Group <cylonjs@hybridgroup.com>",
|
||||||
"email": "cylonjs@hybridgroup.com",
|
|
||||||
"url": "http://hybridgroup.com"
|
"contributors": [
|
||||||
},
|
"Ron Evans <ron@hybridgroup.com>",
|
||||||
|
"Andrew Stewart <andrew@hybridgroup.com>",
|
||||||
|
"Edgar Silva <edgar@hybridgroup.com>",
|
||||||
|
"Mario 'Kuroir' Ricalde <mario@hybridgroup.com>",
|
||||||
|
"Gize Bonilla <gize@hybridgroup.com>",
|
||||||
|
"Adrian Zankich <adrian@hybridgroup.com>"
|
||||||
|
],
|
||||||
|
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://github.com/hybridgroup/cylon"
|
"url": "https://github.com/hybridgroup/cylon"
|
||||||
},
|
},
|
||||||
"licenses": [
|
|
||||||
{
|
"license": "Apache 2.0",
|
||||||
"type": "Apache 2.0"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"hardware": {
|
"hardware": {
|
||||||
"*": false,
|
"*": false,
|
||||||
"./": false,
|
"./": false,
|
||||||
|
@ -26,20 +31,23 @@
|
||||||
"node-namespace": true,
|
"node-namespace": true,
|
||||||
"./lib": true
|
"./lib": true
|
||||||
},
|
},
|
||||||
|
|
||||||
"engines" : {
|
"engines" : {
|
||||||
"node" : ">= 0.10.20"
|
"node" : ">= 0.10.20"
|
||||||
},
|
},
|
||||||
|
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"sinon-chai": "~2.5.0",
|
"sinon-chai": "2.5.0",
|
||||||
"chai": "~1.9.1",
|
"chai": "1.9.1",
|
||||||
"mocha": "~1.18.2",
|
"mocha": "1.18.2",
|
||||||
"sinon": "~1.9.0",
|
"sinon": "1.9.1",
|
||||||
"jshint": "~2.4.4"
|
"jshint": "2.5.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "~0.2.9",
|
"async": "0.2.9",
|
||||||
"node-namespace": "~1.0.0",
|
"node-namespace": "1.0.0",
|
||||||
"express": "~3.5.1",
|
"express": "3.5.1",
|
||||||
"robeaux": ">= 0.0.4"
|
"robeaux": ">= 0.0.4"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue