forked from electron/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
63 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
language: node_js | ||
node_js: | ||
- "4" | ||
- "6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# electron-apps [![Build Status](https://travis-ci.org/zeke/elecron-apps.svg?branch=master)](https://travis-ci.org/zeke/elecron-apps) | ||
|
||
A collection of apps built on Electron | ||
|
||
## Installation | ||
|
||
```sh | ||
npm install electron-apps --save | ||
``` | ||
|
||
## Usage | ||
|
||
```js | ||
const apps = require('electron-apps') | ||
``` | ||
|
||
The module exports an array of objects. Each object looks like this: | ||
|
||
```js | ||
{ | ||
name: 'Visual Studio Code', | ||
description: 'Open source code editor developed by Microsoft', | ||
website: 'https://code.visualstudio.com', | ||
repository: '', | ||
keywords: [], | ||
license: 'MIT', | ||
icon: 'vscode.png', | ||
datauri: 'data:image/png;base64,iVBOR...' | ||
} | ||
``` | ||
|
||
## Tests | ||
|
||
```sh | ||
npm install | ||
npm test | ||
``` | ||
|
||
## Dependencies | ||
|
||
None | ||
|
||
## Dev Dependencies | ||
|
||
- [datauri](https://github.com/heldr/datauri): Create DataURI scheme easily | ||
- [path-exists](https://github.com/sindresorhus/path-exists): Check if a path exists | ||
- [standard](https://github.com/feross/standard): JavaScript Standard Style | ||
- [tap-spec](https://github.com/scottcorgan/tap-spec): Formatted TAP output like Mocha's spec reporter | ||
- [tape](https://github.com/substack/tape): tap-producing test harness for node and browsers | ||
- [yamljs](https://github.com/jeremyfa/yaml.js): Standalone JavaScript YAML 1.2 Parser & Encoder. Works under node.js and all major browsers. Also brings command line YAML/JSON conversion tools. | ||
|
||
|
||
## License | ||
|
||
MIT | ||
|
||
_Generated by [package-json-to-readme](https://github.com/zeke/package-json-to-readme)_ |