Skip to content

Commit

Permalink
Update mocha options
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Nov 30, 2021
1 parent c78ed65 commit 97a7e8c
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions package.json
Expand Up @@ -27,6 +27,11 @@
"bin": {
"rtlcss": "./bin/rtlcss.js"
},
"main": "./lib/rtlcss.js",
"files": [
"bin/*.js",
"lib/*.js"
],
"dependencies": {
"find-up": "^5.0.0",
"picocolors": "^1.0.0",
Expand All @@ -41,14 +46,17 @@
"main": "node ./lib/rtlcss.js",
"lint": "standard",
"lint:fix": "npm run lint -- --fix",
"mocha": "mocha -R spec",
"mocha:special": "npm run mocha -- --fgrep \"# Special\"",
"mocha": "mocha",
"mocha:special": "mocha --fgrep \"# Special\"",
"test": "npm run lint && npm run main && npm run mocha",
"test:ci": "npm run main && npm run mocha"
},
"main": "./lib/rtlcss.js",
"files": [
"bin/*.js",
"lib/*.js"
]
"mocha": {
"check-leaks": true,
"reporter": "dot",
"throw-deprecation": true,
"trace-deprecation": true,
"trace-warnings": true,
"use_strict": true
}
}

0 comments on commit 97a7e8c

Please sign in to comment.