Skip to content

Commit

Permalink
Merge pull request #24 from OperationSpark/feat/nodeTests
Browse files Browse the repository at this point in the history
Feat/node tests
  • Loading branch information
Cain authored Sep 11, 2018
2 parents 5bbd68c + 043dfd4 commit a2492de
Show file tree
Hide file tree
Showing 6 changed files with 1,819 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
331 changes: 331 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 29 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"name": "recursion-prompts",
"version": "1.0.0",
"description": "Recursion Practice",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"pretest": "npm install",
"test": "mocha ./test || :"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OperationSpark/recursion-prompts.git"
},
"author": "Operation Spark",
"license": "ISC",
"bugs": {
"url": "https://github.com/OperationSpark/recursion-prompts/issues"
},
"homepage": "https://github.com/OperationSpark/recursion-prompts#readme",
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"sinon": "^5.0.10"
}
}
Loading

0 comments on commit a2492de

Please sign in to comment.