Skip to content

Commit

Permalink
initial release. alpha software
Browse files Browse the repository at this point in the history
  • Loading branch information
mikesamuel committed Apr 20, 2017
1 parent fa488a2 commit e39cd61
Show file tree
Hide file tree
Showing 20 changed files with 2,626 additions and 0 deletions.
Empty file removed .empty
Empty file.
60 changes: 60 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Courtesy https://github.com/github/gitignore/blob/master/Node.gitignore

# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
26 changes: 26 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# How to contribute

We appreciate contributions. All of the
[main Polymer project][polymer-contributing] guidelines for
contributors also apply to this project

## Bugs & Pull Requests

We use our Github [issue tracker][issue tracker] for tracking bugs, and if you
have a patch, please use our Github [PR queue]. Don't be suprised if your
first PR gets a visit from the [CLA bot][CLA bot].

## Security

Please [disclose vulnerabilities responsibly][sec-disclosure].
As part of Polymer, the Polymer resin project participates in
Google's [Vulnerability Rewards][vrp] and [Patch Rewards][prp] Programs.


[polymer-contributing]: https://github.com/Polymer/polymer/blob/master/CONTRIBUTING.md
[issue tracker]: https://github.com/Polymer/polymer-resin/issues
[PR queue]: https://github.com/Polymer/polymer-resin/pulls
[sec-disclosure]: https://www.google.com/about/appsecurity/
[vrp]: https://www.google.com/about/appsecurity/reward-program/
[prp]: http://www.google.com/about/appsecurity/patch-rewards/
[CLA bot]: https://github.com/Polymer/polymer/blob/master/CONTRIBUTING.md#contributor-license-agreement
27 changes: 27 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
// Copyright (c) 2017 The Polymer Authors. All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Loading

0 comments on commit e39cd61

Please sign in to comment.