0.0.10 • Published 7 years ago

inject-json v0.0.10

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

inject-json

inject json files in json file

####example cat host.json =>

{
  "#inject#": [
    "dep.json"
  ]
}

cat dep.json =>

{
  "version": "1.2.3"
}

inject-json host.json =>

{
  "dep.json": {
    "version": "1.2.3"
  }
}

####install npm install inject-json

####usage

  Usage: inject-json [options] <json file>

  Options:

    -h, --help              output usage information
    -V, --version           output the version number
    -i, --inject [keyword]  inject keyword ['#inject#']
    -m, --merge [function]  specify merge. default = (next, path, cb) => {cb( next );}

####roadmap

  • fetch urls
0.0.10

7 years ago

0.0.9

7 years ago

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.5

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

8 years ago