1.6.10 • Published 3 years ago

package-boot v1.6.10

Weekly downloads
41
License
MIT
Repository
github
Last release
3 years ago

code style downloads license npm version

package-boot

A package capable of creating packages

usage

const boot = require("package-boot");

boot(path, dependencies, skel, properties);

path - mandatory string, specifies the path (with name) of the new package
dependencies - optional list of objects containing the name and version and optionally the dev status of the package to be added as a dependency for the new package
skel - optional string, specifies the path for skeleton files
properties - optional object with properties to be merged to the final package.json file

sample

const app = require("./package.json");
const boot = require("package-boot");

boot("name", [
  app,
  "deltree",
  {name: "package-boot", dev: true}
],
`${__dirname}/skel`,
{
  keywords: [
    "alpha",
    "beta",
    "omega"
  ],
  scripts: {
    test: "node ./test.js"
  }
});
1.6.9

3 years ago

1.6.8

3 years ago

1.6.10

3 years ago

1.6.7

3 years ago

1.6.6

3 years ago

1.6.5

3 years ago

1.6.4

4 years ago

1.6.3

4 years ago

1.6.2

4 years ago

1.6.1

4 years ago

1.6.0

4 years ago

1.5.2

4 years ago

1.5.1

5 years ago

1.5.0

5 years ago

1.4.2

5 years ago

1.4.1

5 years ago

1.4.0

5 years ago

1.3.5

5 years ago

1.3.4

5 years ago

1.3.3

5 years ago

1.3.2

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago