Browse Source

Initial commit

pull/2/head
Luke Childs 8 years ago
commit
ff98ec3c64
  1. 72
      .gitignore
  2. 6
      .travis.yml
  3. 21
      LICENSE
  4. 17
      README.md
  5. 33
      package.json
  6. 0
      src/index.js

72
.gitignore

@ -0,0 +1,72 @@
## Node
# Logs
logs
*.log
npm-debug.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
# node-waf configuration
.lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
# Dependency directories
node_modules
jspm_packages
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
## OS X
*.DS_Store
.AppleDouble
.LSOverride
# Icon must end with two \r
Icon
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk

6
.travis.yml

@ -0,0 +1,6 @@
language: node_js
node_js: node
script: npm test
notifications:
email:
on_success: never

21
LICENSE

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2017 Luke Childs
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

17
README.md

@ -0,0 +1,17 @@
# pirateproxy
> Proxy site for thepiratebay.org
[![Build Status](https://travis-ci.org/lukechilds/pirateproxy.svg?branch=master)](https://travis-ci.org/lukechilds/pirateproxy)
[![Coverage Status](https://coveralls.io/repos/github/lukechilds/pirateproxy/badge.svg?branch=master)](https://coveralls.io/github/lukechilds/pirateproxy?branch=master)
[![npm](https://img.shields.io/npm/v/pirateproxy.svg)](https://www.npmjs.com/package/pirateproxy)
## Install
```shell
npm install --save pirateproxy
```
## License
MIT © Luke Childs

33
package.json

@ -0,0 +1,33 @@
{
"name": "pirateproxy",
"version": "0.0.0",
"description": "Proxy site for thepiratebay.org",
"main": "src/index.js",
"scripts": {
"test": "xo"
},
"xo": {
"extends": "xo-lukechilds"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukechilds/pirateproxy.git"
},
"keywords": [
"proxy",
"thepiratebay",
"pirate",
"censorship"
],
"author": "Luke Childs <lukechilds123@gmail.com> (http://lukechilds.co.uk)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukechilds/pirateproxy/issues"
},
"homepage": "https://github.com/lukechilds/pirateproxy",
"dependencies": {},
"devDependencies": {
"eslint-config-xo-lukechilds": "^1.0.0",
"xo": "^0.19.0"
}
}

0
src/index.js

Loading…
Cancel
Save