Skip to content

Commit

Permalink
Add taprc
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners committed Apr 21, 2023
1 parent a75330d commit 3cfb287
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,4 +1,5 @@
node_modules/
.vscode/
.idea/
.nyc_output/
*.iml
8 changes: 8 additions & 0 deletions .taprc.yaml
@@ -0,0 +1,8 @@
coverage: true
timeout: 480
check-coverage: false

reporter: terse

files:
- 'test/**/*.test.js'
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -5,8 +5,8 @@
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"test": "tap --no-cov 'test/**/*.test.js'",
"test:ci": "standard | snazzy && tap \"test/**/*.test.js\" --coverage-report=lcovonly"
"test": "tap",
"test:ci": "standard | snazzy && tap --coverage-report=lcovonly"
},
"precommit": [
"lint",
Expand All @@ -33,13 +33,13 @@
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0"
"tap": "^16.3.4"
},
"dependencies": {
"deep-assign": "^3.0.0",
"fast-json-parse": "^1.0.2",
"fast-json-parse": "^1.0.3",
"pump": "^3.0.0",
"split2": "^4.0.0",
"split2": "^4.2.0",
"through2": "^4.0.2"
}
}

0 comments on commit 3cfb287

Please sign in to comment.