mirror of
https://github.com/feathersjs/feathers.git
synced 2025-12-08 19:46:22 +00:00
15 lines
341 B
Markdown
15 lines
341 B
Markdown
# package.json
|
|
|
|
## Folders
|
|
|
|
The source and test folders to which files are generated is set in the `package.json`. To change them, rename the `src/` or `test/` folder to what you want it to and then update `package.json` `directories` section accordingly:
|
|
|
|
```json
|
|
{
|
|
"directories": {
|
|
"lib": "api/src",
|
|
"test": "api/test"
|
|
}
|
|
}
|
|
```
|