Michael Winter 555e2c196e initial commit
..
index.js initial commit
package.json initial commit
readme.md initial commit

readme.md

is-npm Build Status

Check if your code is running as an npm script

Install

$ npm install --save is-npm

Usage

var isNpm = require('is-npm');
console.log(isNpm);
$ node foo.js
#=> false
$ npm run foo
#=> true

License

MIT © Sindre Sorhus