I have seen (don\'t remember where) a package.json file with custom keys starting with an underscore:
{
\"name\": \"application-name\"
, \"version\": \"0.0
tl;dr:
package.json
._
and $
E.g., if you own domain example.org
, you could store a custom random
key as follows, inside a top-level key in reverse-domain-name notation with _
substituted for .
and, if applicable, -
(see comments) (e.g., org_example
):
{
"name": "application-name"
, "version": "0.0.1"
, "private": true
, "dependencies": {
"express": "2.4.7"
, "jade": ">= 0.0.1"
}
, "org_example": {
"random": true
}
}
npm
's package.json
file format mostly complies with the CommonJS package specification:
npm
currently uses: https://docs.npmjs.com/files/package.jsonAs for choosing custom keys: the CommonJS package specification states (emphasis mine):
The following fields are reserved for future expansion:
build
,default
,external
,files
,imports
,maintainer
,paths
,platform
,require
,summary
,test
,using
,downloads
,uid
.Extensions to the package descriptor specification should strive to avoid collisions for future standard names by name-spacing their properties with innocuous names that do not have meanings relevant to general package management.
The following fields are reserved for package registries to use at their discretion:
id
,type
. All properties beginning with_
or$
are also reserved for package registries to use at their discretion.
Given the nature of JSON and this statement from the Nodejitsu documentation I don't see anything wrong with that.
NPM itself is only aware of two fields in the package.json:
{ "name" : "barebones", "version" : "0.0.0", }
NPM also cares about a couple of fields listed here. So as long as it is valid JSON and doesn't interfere with Node.js or NPM everything should be alright and valid.
Node's awareness of package.json files seems extends to the main field. Ref.
{ "name" : "some-library", "main" : "./lib/some-library.js" }
If this was in a folder at ./some-library, then require('./some-library') would attempt to load ./some-library/lib/some-library.js.
This is the extent of Node's awareness of package.json files.
To avoid possible conflicts you should prefixing your keys with some character or word. An underscore is a common variant.