Skip to content

Commit

Permalink
repos setup
Browse files Browse the repository at this point in the history
  • Loading branch information
thlorenz committed Mar 13, 2013
1 parent ecdffc5 commit 98f62fb
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 24 deletions.
16 changes: 16 additions & 0 deletions .gitignore
@@ -0,0 +1,16 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

node_modules
npm-debug.log
tmp
16 changes: 16 additions & 0 deletions LICENSE
@@ -0,0 +1,16 @@
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

node_modules
npm-debug.log
tmp
50 changes: 26 additions & 24 deletions package.json
@@ -1,26 +1,28 @@
{
"name" : "convert-source-map",
"version" : "0.0.0",
"description" : "Converts a source-map from/to different formats.",
"main" : "convert-source-map.js",
"scripts" : {
"test" : "node-trap test/*.js"
},
"repository" : {
"type" : "git",
"url" : "git://github.com/thlorenz/convert-source-map.git"
},
"homepage" : "https://github.com/thlorenz/convert-source-map",
"dependencies" : {
},
"devDependencies" : {
},
"keywords": [] ,
"author" : {
"name" : "Thorsten Lorenz",
"email" : "thlorenz@gmx.de",
"url" : "http://thlorenz.com"
},
"license" : "MIT",
"engine" : { "node" : ">=0.6" }
"name": "convert-source-map",
"version": "0.0.0",
"description": "Converts a source-map from/to different formats.",
"main": "convert-source-map.js",
"scripts": {
"test": "node-trap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/convert-source-map.git"
},
"homepage": "https://github.com/thlorenz/convert-source-map",
"dependencies": {},
"devDependencies": {
"trap": "~0.4.2"
},
"keywords": [],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": "MIT",
"engine": {
"node": ">=0.6"
}
}

0 comments on commit 98f62fb

Please sign in to comment.