[dist] Fix maintainers field
This commit is contained in:
parent
6353d028f7
commit
1f67d35305
1 changed files with 14 additions and 5 deletions
19
package.json
19
package.json
|
@ -3,14 +3,18 @@
|
||||||
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
|
"description": "Hierarchical node.js configuration with files, environment variables, command-line arguments, and atomic object merging.",
|
||||||
"version": "0.6.0",
|
"version": "0.6.0",
|
||||||
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
|
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
|
||||||
"contributors": [
|
"maintainers": [
|
||||||
{ "name": "Charlie Robbins", "email": "charlie@nodejitsu.com" }
|
"indexzero <charlie@nodejitsu.com>"
|
||||||
],
|
],
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "http://github.com/flatiron/nconf.git"
|
"url": "http://github.com/flatiron/nconf.git"
|
||||||
},
|
},
|
||||||
"keywords": ["configuration", "key value store", "plugabble"],
|
"keywords": [
|
||||||
|
"configuration",
|
||||||
|
"key value store",
|
||||||
|
"plugabble"
|
||||||
|
],
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"async": "0.1.x",
|
"async": "0.1.x",
|
||||||
"ini": "1.x.x",
|
"ini": "1.x.x",
|
||||||
|
@ -21,6 +25,11 @@
|
||||||
"vows": "0.6.x"
|
"vows": "0.6.x"
|
||||||
},
|
},
|
||||||
"main": "./lib/nconf",
|
"main": "./lib/nconf",
|
||||||
"scripts": { "test": "vows test/*-test.js test/**/*-test.js --spec" },
|
"scripts": {
|
||||||
"engines": { "node": ">= 0.4.0" }
|
"test": "vows test/*-test.js test/**/*-test.js --spec"
|
||||||
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">= 0.4.0"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue