mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
49 lines
1.8 KiB
JSON
Executable File
49 lines
1.8 KiB
JSON
Executable File
{
|
|
"name": "beeper",
|
|
"version": "1.1.0",
|
|
"description": "Make your terminal beep",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/sindresorhus/beeper"
|
|
},
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"scripts": {
|
|
"test": "node test.js"
|
|
},
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"keywords": [
|
|
"beep",
|
|
"beeper",
|
|
"boop",
|
|
"terminal",
|
|
"term",
|
|
"cli",
|
|
"console",
|
|
"ding",
|
|
"ping",
|
|
"alert",
|
|
"gulpfriendly"
|
|
],
|
|
"devDependencies": {
|
|
"hooker": "^0.2.3",
|
|
"tape": "^4.0.0"
|
|
},
|
|
"readme": "# beeper [](https://travis-ci.org/sindresorhus/beeper)\n\n> Make your terminal beep\n\n\n\nUseful as an attention grabber e.g. when an error happens.\n\n\n## Install\n\n```\n$ npm install --save beeper\n```\n\n\n## Usage\n\n```js\nvar beeper = require('beeper');\n\nbeeper();\n// beep one time\n\nbeeper(3);\n// beep three times\n\nbeeper('****-*-*');\n// beep, beep, beep, beep, pause, beep, pause, beep\n```\n\n\n## API\n\nIt will not beep if stdout is not TTY or if the user supplies the `--no-beep` flag.\n\n### beeper([count|melody], [callback])\n\n#### count\n\nType: `number` \nDefault: `1`\n\nHow many times you want it to beep.\n\n#### melody\n\nType: `string`\n\nConstruct your own melody by supplying a string of `*` for beep `-` for pause.\n\n\n## License\n\nMIT © [Sindre Sorhus](http://sindresorhus.com)\n",
|
|
"readmeFilename": "readme.md",
|
|
"bugs": {
|
|
"url": "https://github.com/sindresorhus/beeper/issues"
|
|
},
|
|
"_id": "beeper@1.1.0",
|
|
"_from": "beeper@^1.0.0"
|
|
}
|