mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.1 KiB
46 lines
2.1 KiB
{
|
|
"name": "init-package-json",
|
|
"version": "0.0.6",
|
|
"main": "init-package-json.js",
|
|
"scripts": {
|
|
"test": "tap test/*.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/isaacs/init-package-json"
|
|
},
|
|
"author": {
|
|
"name": "Isaac Z. Schlueter",
|
|
"email": "i@izs.me",
|
|
"url": "http://blog.izs.me/"
|
|
},
|
|
"license": "BSD",
|
|
"description": "A node module to get your node module started",
|
|
"dependencies": {
|
|
"promzard": "~0.2.0",
|
|
"read": "~1.0.1",
|
|
"read-package-json": "0",
|
|
"semver": "1.x"
|
|
},
|
|
"devDependencies": {
|
|
"tap": "~0.2.5",
|
|
"rimraf": "~2.0.2"
|
|
},
|
|
"keywords": [
|
|
"init",
|
|
"package.json",
|
|
"package",
|
|
"helper",
|
|
"wizard",
|
|
"wizerd",
|
|
"prompt",
|
|
"start"
|
|
],
|
|
"readme": "# init-package-json\n\nA node module to get your node module started.\n\n## Usage\n\n```javascript\nvar init = require('init-package-json')\nvar path = require('path')\n\n// a path to a promzard module. In the event that this file is\n// not found, one will be provided for you.\nvar initFile = path.resolve(process.env.HOME, '.npm-init')\n\n// the dir where we're doin stuff.\nvar dir = process.cwd()\n\n// extra stuff that gets put into the PromZard module's context.\n// In npm, this is the resolved config object. Exposed as 'config'\n// Optional.\nvar configData = { some: 'extra stuff' }\n\n// Any existing stuff from the package.json file is also exposed in the\n// PromZard module as the `package` object. There will also be free\n// vars for:\n// * `filename` path to the package.json file\n// * `basename` the tip of the package dir\n// * `dirname` the parent of the package dir\n\ninit(dir, initFile, configData, function (er, data) {\n // the data's already been written to {dir}/package.json\n // now you can do stuff with it\n})\n```\n\nOr from the command line:\n\n```\n$ npm-init\n```\n\nSee [PromZard](https://github.com/isaacs/promzard) for details about\nwhat can go in the config file.\n",
|
|
"readmeFilename": "README.md",
|
|
"_id": "init-package-json@0.0.6",
|
|
"dist": {
|
|
"shasum": "3d16465b07d401b8ec2a5df1bd379dccc2dd6a37"
|
|
},
|
|
"_from": "init-package-json@0.0.6"
|
|
}
|
|
|