Skip to content

Commit

Permalink
Adding jasmine-node to devDependecies and calling it from Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
lfilho committed Feb 24, 2014
1 parent b5f8914 commit 1f2b09e
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 16 deletions.
10 changes: 5 additions & 5 deletions Makefile
Expand Up @@ -23,16 +23,16 @@ SHELL := /bin/bash
benchmark:
@node benchmarks

clean:
clean:
@find ./ -name *~ | xargs rm -f
@find ./ -name \#* | xargs rm -f
@rm *classifier.json

test:
@NODE_PATH=. jasmine-node spec/
@NODE_PATH=. node_modules/jasmine-node/bin/jasmine-node spec/

test_io:
@NODE_PATH=. jasmine-node io_spec/
test_io:
@NODE_PATH=. node_modules/jasmine-node/bin/jasmine-node io_spec/

test_io_unclean:
@NODE_PATH=. jasmine-node io_spec/
@NODE_PATH=. node_modules/jasmine-node/bin/jasmine-node io_spec/
44 changes: 33 additions & 11 deletions package.json
Expand Up @@ -16,23 +16,45 @@
"underscore": ">=1.3.1"
},
"devDependencies": {
"uubench": "0.0.x"
"uubench": "0.0.x",
"jasmine-node": "~1.13.1"
},
"author": "Chris Umbel <chris@chrisumbel.com>",
"keywords": ["natural", "language", "porter", "lancaster", "stemmer", "bayes",
"classifier", "phonetic", "metaphone", "inflector", "wordnet", "tf-idf",
"logistic", "regression", "doublemetaphone", "double", "jaro-winkler", "levenshtein",
"distance"],
"keywords": [
"natural",
"language",
"porter",
"lancaster",
"stemmer",
"bayes",
"classifier",
"phonetic",
"metaphone",
"inflector",
"wordnet",
"tf-idf",
"logistic",
"regression",
"doublemetaphone",
"double",
"jaro-winkler",
"levenshtein",
"distance"
],
"main": "./lib/natural/index.js",
"maintainers": [{
"maintainers": [
{
"name": "Chris Umbel",
"email": "chris@chrisumbel.com",
"web": "http://www.chrisumbel.com"
}, {
},
{
"name": "Rob Ellis",
"email": "rob@silentrob.me"
}, {
"name": "Ken Koch",
"email": "kkoch986@gmail.com"
}]
},
{
"name": "Ken Koch",
"email": "kkoch986@gmail.com"
}
]
}

0 comments on commit 1f2b09e

Please sign in to comment.