ran npm install tap-spec --save-dev & piped tape test to tap-spec

This commit is contained in:
King
2018-01-02 04:21:22 -05:00
parent b38fb5634f
commit 9197d8b128
2 changed files with 133 additions and 14 deletions

View File

@ -19,17 +19,24 @@
"tagger": "node ./scripts/tag.js",
"webber": "node ./scripts/web.js",
"tdd": "node ./scripts/tdd.js",
"test": "tape test/**/*.test.js"
"test": "tape test/**/*.test.js | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chalarangelo/30-seconds-of-code.git"
},
"keywords": ["javascript", "snippets", "list"],
"keywords": [
"javascript",
"snippets",
"list"
],
"author": "Chalarangelo (chalarangelo@gmail.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chalarangelo/30-seconds-of-code/issues"
},
"homepage": "https://github.com/Chalarangelo/30-seconds-of-code#readme"
"homepage": "https://github.com/Chalarangelo/30-seconds-of-code#readme",
"devDependencies": {
"tap-spec": "^4.1.1"
}
}