Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
test-runner as external dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
hoegaarden committed Jul 28, 2013
1 parent 2065493 commit f26e9c5
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ node_modules
*~
npm-debug.log
database.json
certs/*
certs/*
test/test-runner
19 changes: 10 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@
"main": "index.js",
"scripts": {
"start": "NODE_PG_FORCE_NATIVE=1 node .",
"test": "./test/run.sh",
"test": "./test/test-runner",
"pretest": "find . -path ./node_modules -prune -o -name \\*js -print0 | xargs -0 node_modules/.bin/jshint"
},
"config" : {
"http_port" : 8080 ,
"https_port" : 4430 ,
"https_cert" : "./certs/server.crt" ,
"https_key" : "./certs/server.key"
} ,
"repository": "",
"config": {
"http_port": 8080,
"https_port": 4430,
"https_cert": "./certs/server.crt",
"https_key": "./certs/server.key"
},
"repository": "git://github.com/dustmap/dustmap-server",
"keywords": [
"dustmap",
"server",
Expand All @@ -38,6 +38,7 @@
"supertest": "~0.7.0",
"nodeunit": "~0.8.0",
"supervisor": "~0.5.3",
"jshint": "*"
"jshint": "*",
"test-runner": "git://github.com/hoegaarden/test-runner"
}
}

0 comments on commit f26e9c5

Please sign in to comment.