Skip to content

Commit

Permalink
Add package.json and .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
danielstjules committed Aug 9, 2014
1 parent 279407f commit 2fb1723
Show file tree
Hide file tree
Showing 3 changed files with 56 additions and 1 deletion.
19 changes: 19 additions & 0 deletions .gitignore
@@ -0,0 +1,19 @@
lib-cov
coverage
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz

pids
logs
results

npm-debug.log
node_modules

.grunt
.DS_Store
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
pjs
===

Pipeable javascript
Pipeable JavaScript. Say whaaa
36 changes: 36 additions & 0 deletions package.json
@@ -0,0 +1,36 @@
{
"name": "pipeable-js",
"version": "0.0.0",
"description": "Pipeable JavaScript",
"keywords": [
"pipe",
"pipeable",
"stdin",
"stdout",
"map",
"reduce"
],
"author": "Daniel St. Jules <danielst.jules@gmail.com>",
"licenses": [
"MIT"
],
"homepage": "https://github.com/danielstjules/pjs",
"repository": {
"type": "git",
"url": "https://github.com/danielstjules/pjs.git"
},
"dependencies": {
"commander": "*"
},
"devDependencies": {
"mocha": "*",
"expect.js": "*",
"mock-fs": "*"
},
"bin": {
"pjs": "./bin/pjs"
},
"scripts": {
"test": "./node_modules/.bin/mocha --recursive -R spec spec"
}
}

0 comments on commit 2fb1723

Please sign in to comment.