Adds package.json and .gitignore; README.md includes usage and installation instructions #21
Merged
dbkaplun
merged 3 commits from master
into master
11 years ago
3 changed files with 69 additions and 0 deletions
@ -0,0 +1,25 @@ |
|||||
|
# Logs |
||||
|
logs |
||||
|
*.log |
||||
|
|
||||
|
# Runtime data |
||||
|
pids |
||||
|
*.pid |
||||
|
*.seed |
||||
|
|
||||
|
# Directory for instrumented libs generated by jscoverage/JSCover |
||||
|
lib-cov |
||||
|
|
||||
|
# Coverage directory used by tools like istanbul |
||||
|
coverage |
||||
|
|
||||
|
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
||||
|
.grunt |
||||
|
|
||||
|
# Compiled binary addons (http://nodejs.org/api/addons.html) |
||||
|
build/Release |
||||
|
|
||||
|
# Dependency directory |
||||
|
# Deployed apps should consider commenting this line out: |
||||
|
# see https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git |
||||
|
node_modules |
@ -0,0 +1,26 @@ |
|||||
|
{ |
||||
|
"name": "JLambda", |
||||
|
"version": "0.0.0", |
||||
|
"description": "yet another static functional language implemented in JS", |
||||
|
"scripts": { |
||||
|
"test": "./test.js" |
||||
|
}, |
||||
|
"repository": { |
||||
|
"type": "git", |
||||
|
"url": "https://github.com/nisstyre56/JLambda.git" |
||||
|
}, |
||||
|
"keywords": [ |
||||
|
"static", |
||||
|
"functional", |
||||
|
"language" |
||||
|
], |
||||
|
"author": "nisstyre56", |
||||
|
"license": "ΩF:∅", |
||||
|
"bugs": { |
||||
|
"url": "https://github.com/nisstyre56/JLambda/issues" |
||||
|
}, |
||||
|
"homepage": "https://github.com/nisstyre56/JLambda", |
||||
|
"dependencies": { |
||||
|
"underscore": "^1.6.0" |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue