Skip to content

Commit

Permalink
added downloaded and generated package files to .gitignore, re-added …
Browse files Browse the repository at this point in the history
…package.json, added all contributors from readme to package.json, added browserisfy as dev dependency, run browserify as post-install step
  • Loading branch information
regular committed Jan 7, 2015
1 parent 181a525 commit 0aab69b
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Expand Up @@ -6,3 +6,9 @@
ehthumbs.db
Thumbs.db
.idea/
node_modules
utils/fs.json
utils/fs.xml
utils/fs
utils/fs2xml
utils/packages
52 changes: 52 additions & 0 deletions package.json
@@ -0,0 +1,52 @@
{
"name": "jor1k",
"version": "1.0.0",
"description": "jor1k: OR1000 Javascript Emulator Running Linux",
"contributors": [
{
"name": "Sebastian Macke",
"email": "sebastian@macke.de"
},
{
"name": "Gerard Braad",
"email": "me@gbraad.nl"
},
{
"name": "Benjamin Burns",
"email": "benjamin.c.burns@gmail.com"
},
{
"name": "Lawrence Angrave",
"email": "root@localhost"
},
{
"name": "Neelabh Gupta",
"email": "nsgupta2@illinois.edu"
}
],
"keywords": [
"or1k",
"emulation"
],
"author": "Sebastian Macke",
"license": "simplified BSD",
"bugs": {
"url": "https://github.com/s-macke/jor1k/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/s-macke/jor1k.git"
},
"main": "index.html",
"dependencies": {},
"devDependencies": {
"jshint": "latest",
"browserify": "^8.0.3"
},
"scripts": {
"postinstall": "./compile"
},
"engines": {
"node": ">= 0.8.0"
}
}

0 comments on commit 0aab69b

Please sign in to comment.