Node's Ecosystem
Core
Programs
{
"name": "my-program",
"version": "1.0.0",
"description": "program description",
"homepage": "http://programs-website.com",
"keywords": [
"one",
"two",
"three"
],
"author": "Bevry Pty Ltd <[email protected]> (http://bevry.me)",
"maintainers": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"contributors": [
"Benjamin Lupton <[email protected]> (http://balupton.com)"
],
"bugs": {
"url": "http://programs-issue-tracker.com"
},
"repository": {
"type": "git",
"url": "http://programs-repository.git"
},
"engines": {
"node": ">=0.6.0",
"npm": ">=1.1.0"
},
"dependencies": {
"connect": "2.6.x",
"express": "3.0.x",
"socket.io": "0.9.x"
},
"devDependencies": {
"coffee-script": "1.4.x"
},
"directories": {
"lib": "./lib"
},
"bin": {
"program": "./bin/program"
},
"scripts": {
"test": "node ./test/everything.test.js"
},
"main": "./main.js"
}Modules
Discovering Modules
Last updated
Was this helpful?