I've put together a little library called Mockery (edit: now called pretendr because there's another project called mockery), and I want to put it in npm. The library has directories called lib and test for the source files and unit tests respectively. I have the following in my package.json:
"files" : [
"Makefile",
"README.md",
"lib/",
"lib/mockery.js",
"test/",
"test/runner.js",
"test/tests.js"
],
"directories" : {
"lib" : "lib",
"test" : "test"
},
"main" : "lib/mockery"
But for some reason, everything in my lib directory just seems to go in the root directory of my npm module. The test directory works automatically (even if I don't include the "directories" part of the package.json). How can I make npm put my lib directory contents in the correct place?