Browse Source

Switching over to NodeJS as a server host. Added an ISC license.

dev-bank
Bryan Miller 5 years ago
parent
commit
53393d8434
2 changed files with 32 additions and 0 deletions
  1. +9
    -0
      LICENSE
  2. +23
    -0
      package.json

+ 9
- 0
LICENSE View File

@@ -0,0 +1,9 @@
Copyright 2019 Bryan Miller

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all
copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE
LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.


+ 23
- 0
package.json View File

@@ -0,0 +1,23 @@
{
"name": "nespaint",
"version": "0.1.0",
"description": "Painting program focused on sprite, tile, and attribute table creation for NES games.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git@git.obsidianblk.me:ObsidianBlk/nespaint.git"
},
"keywords": [
"Nintendo",
"NES",
"Paint",
"Graphics",
"Development",
"Tool"
],
"author": "Bryan \"ObsidianBlk\" Miller",
"license": "ISC"
}

Loading…
Cancel
Save