diff options
author | Joel Kronqvist <work.joelkronqvist@pm.me> | 2022-03-11 20:46:06 +0200 |
---|---|---|
committer | Joel Kronqvist <work.joelkronqvist@pm.me> | 2022-03-11 20:46:06 +0200 |
commit | 080c5819d87b933816d724a83f3bf4f1686770a7 (patch) | |
tree | 4a2ccc68b27edf7d4cbc586c932cc7542b655e19 /node_modules/v8-to-istanbul/package.json | |
parent | 5ac7049a9d30733165cc212dee308163c2a14644 (diff) | |
parent | d003b82235a9329f912522a2f70aa950dfce4998 (diff) | |
download | LYLLRuoka-080c5819d87b933816d724a83f3bf4f1686770a7.tar.gz LYLLRuoka-080c5819d87b933816d724a83f3bf4f1686770a7.zip |
Merge branch 'master' of https://github.com/JoelHMikael/FoodJS
Updating remote changes
Diffstat (limited to 'node_modules/v8-to-istanbul/package.json')
-rw-r--r-- | node_modules/v8-to-istanbul/package.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/node_modules/v8-to-istanbul/package.json b/node_modules/v8-to-istanbul/package.json new file mode 100644 index 0000000..50abafb --- /dev/null +++ b/node_modules/v8-to-istanbul/package.json @@ -0,0 +1,48 @@ +{ + "name": "v8-to-istanbul", + "version": "8.1.1", + "description": "convert from v8 coverage format to istanbul's format", + "main": "index.js", + "types": "index.d.ts", + "scripts": { + "fix": "standard --fix", + "snapshot": "TAP_SNAPSHOT=1 tap test/*.js", + "test": "c8 --reporter=html --reporter=text tap --no-coverage test/*.js", + "posttest": "standard", + "coverage": "c8 report --check-coverage" + }, + "repository": "istanbuljs/v8-to-istanbul", + "keywords": [ + "istanbul", + "v8", + "coverage" + ], + "standard": { + "ignore": [ + "**/test/fixtures" + ] + }, + "author": "Ben Coe <ben@npmjs.com>", + "license": "ISC", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "devDependencies": { + "@types/node": "^16.0.0", + "c8": "^7.2.1", + "semver": "^7.3.2", + "should": "13.2.3", + "standard": "^16.0.4", + "tap": "^15.1.6" + }, + "engines": { + "node": ">=10.12.0" + }, + "files": [ + "lib/*.js", + "index.js", + "index.d.ts" + ] +} |