diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..de78e27 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +lib-cov +*.seed +*.log +*.csv +*.dat +*.out +*.pid +*.gz + +pids +logs +results + +node_modules +npm-debug.log +tmp diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..de78e27 --- /dev/null +++ b/LICENSE @@ -0,0 +1,16 @@ +lib-cov +*.seed +*.log +*.csv +*.dat +*.out +*.pid +*.gz + +pids +logs +results + +node_modules +npm-debug.log +tmp diff --git a/package.json b/package.json index 986be7a..1aa545b 100644 --- a/package.json +++ b/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" + } }