mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-13 03:02:49 +00:00
updated package.json
This commit is contained in:
30
node_modules/nconf/test/fixtures/data.js
generated
vendored
Normal file
30
node_modules/nconf/test/fixtures/data.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
/*
|
||||
* data.js: Simple data fixture for configuration test.
|
||||
*
|
||||
* (C) 2011, Nodejitsu Inc.
|
||||
*
|
||||
*/
|
||||
|
||||
exports.data = {
|
||||
isNull: null,
|
||||
literal: 'bazz',
|
||||
arr: ['one', 2, true, { value: 'foo' }],
|
||||
obj: {
|
||||
host: 'localhost',
|
||||
port: 5984,
|
||||
array: ['one', 2, true, { foo: 'bar' }],
|
||||
auth: {
|
||||
username: 'admin',
|
||||
password: 'password'
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
exports.merge = {
|
||||
prop1: 1,
|
||||
prop2: [1, 2, 3],
|
||||
prop3: {
|
||||
foo: 'bar',
|
||||
bar: 'foo'
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user