source: trip-planner-front/node_modules/@jsdevtools/coverage-istanbul-loader/package.json@ 6a3a178

Last change on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.9 KB
Line 
1{
2 "name": "@jsdevtools/coverage-istanbul-loader",
3 "version": "3.0.5",
4 "description": "A Webpack loader that uses Istanbul to add code coverage instrumentation",
5 "keywords": [
6 "webpack-loader",
7 "webpack",
8 "loader",
9 "istanbul",
10 "coverage",
11 "code coverage",
12 "instrumentation",
13 "instrumenter",
14 "sourcemap",
15 "source-map",
16 "sourcemaps",
17 "source-maps"
18 ],
19 "author": {
20 "name": "James Messinger",
21 "url": "https://jamesmessinger.com"
22 },
23 "license": "MIT",
24 "homepage": "https://jstools.dev/coverage-istanbul-loader",
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/JS-DevTools/coverage-istanbul-loader.git"
28 },
29 "main": "lib/index.js",
30 "types": "lib/index.d.ts",
31 "files": [
32 "lib"
33 ],
34 "scripts": {
35 "clean": "shx rm -rf .nyc_output coverage lib",
36 "lint": "eslint src test/specs test/utils",
37 "build": "tsc",
38 "watch": "tsc --watch",
39 "test": "mocha && npm run lint",
40 "coverage": "nyc node_modules/mocha/bin/mocha",
41 "upgrade": "npm-check -u && npm audit fix",
42 "bump": "bump --tag --push --all",
43 "release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
44 },
45 "dependencies": {
46 "convert-source-map": "^1.7.0",
47 "istanbul-lib-instrument": "^4.0.3",
48 "loader-utils": "^2.0.0",
49 "merge-source-map": "^1.1.0",
50 "schema-utils": "^2.7.0"
51 },
52 "devDependencies": {
53 "@jsdevtools/eslint-config": "^1.0.3",
54 "@jsdevtools/version-bump-prompt": "^6.0.5",
55 "@types/convert-source-map": "^1.5.1",
56 "@types/istanbul-lib-instrument": "^1.7.4",
57 "@types/json-schema": "^7.0.5",
58 "@types/loader-utils": "^2.0.1",
59 "@types/node": "^14.0.23",
60 "@types/webpack": "^4.41.21",
61 "chai": "^4.2.0",
62 "eslint": "^7.4.0",
63 "mocha": "^8.0.1",
64 "npm-check": "^5.9.2",
65 "nyc": "^15.1.0",
66 "shx": "^0.3.2",
67 "typescript": "^3.9.6",
68 "webpack": "^4.43.0"
69 }
70}
Note: See TracBrowser for help on using the repository browser.