0.0.2 • Published 8 years ago
npm-scripts-config v0.0.2
npm-scripts-config
npm-scripts-config can extract scripts from package.json inside a config file that can be shared between repositories.
Installation
This npm package should be installed as a dev dependency.
$ npm install --save--dev npm-scripts-configUsage
.scriptsrc files will be automatically used as the default configuration file and scripts defined in it could be used from the package.json's scripts section.
package.json
{
[...]
"scripts": {
"test": "npm-scripts-config test"
},
[...]
}.scriptsrc
{
"test": "echo \"Error: no test specified\" && exit 1"
}From your repository you can run your scripts like standard npm scripts:
npm run testor
yarn testExtend a configuration from node_modules
If you want to reuse a shared configuration you can specify it using the @extends key.
.scriptsrc
{
"@extends": "my-custom-npm-package-name"
}Where the npm package my-custom-npm-package-name contains a .scriptsrc at its root.