Skip to content

Commit

Permalink
refactor(package.json): remove unnessesary typings references
Browse files Browse the repository at this point in the history
Remove `"typings"` references, since they are not needed. TypeScript can resolve them via the `"main"` reference.
  • Loading branch information
nicojs committed Nov 9, 2019
2 parents 71c5b6d + 50a8f15 commit 6fbc303
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion packages/core/package.json
Expand Up @@ -3,7 +3,6 @@
"version": "2.2.1",
"description": "The extendable JavaScript mutation testing framework",
"main": "src/Stryker.js",
"typings": "src/Stryker.d.ts",
"scripts": {
"start": "tsc -w",
"test": "nyc --exclude-after-remap=false --check-coverage --reporter=html --report-dir=reports/coverage --lines 80 --functions 80 --branches 75 npm run mocha",
Expand Down
1 change: 0 additions & 1 deletion packages/html-reporter/package.json
Expand Up @@ -3,7 +3,6 @@
"version": "2.2.1",
"description": "An html reporter for the JavaScript mutation testing framework Stryker",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"test": "nyc --exclude-after-remap=false --check-coverage --reporter=html --report-dir=reports/coverage --lines 95 --functions 95 --branches 90 npm run mocha",
"mocha": "mocha \"test/helpers/**/*.js\" \"test/unit/**/*.js\" && mocha --timeout 20000 \"test/helpers/**/*.js\" \"test/integration/**/*.js\""
Expand Down
1 change: 0 additions & 1 deletion packages/mutator-specification/package.json
Expand Up @@ -13,7 +13,6 @@
"access": "public"
},
"main": "src/index.js",
"typings": "src/index.ts",
"author": "Nico Jansen <jansennico@gmail.com>",
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion packages/test-helpers/package.json
Expand Up @@ -4,7 +4,6 @@
"version": "2.2.1",
"description": "A helper package for testing",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {},
"repository": {
"type": "git",
Expand Down
1 change: 0 additions & 1 deletion packages/util/package.json
Expand Up @@ -3,7 +3,6 @@
"version": "2.2.1",
"description": "Contains utilities for Stryker, the mutation testing framework for JavaScript and friends",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"start": "tsc -w",
"test": "nyc --exclude-after-remap=false --check-coverage --reporter=html --report-dir=reports/coverage --lines 90 --functions 95 --branches 75 npm run mocha",
Expand Down
1 change: 0 additions & 1 deletion packages/wct-runner/package.json
Expand Up @@ -3,7 +3,6 @@
"version": "2.2.1",
"description": "A plugin to use web component tester as a test runner for Stryker, the mutation testing framework for JavaScript and friends",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"start": "tsc -w",
"test": "cross-env LAUNCHPAD_BROWSERS=chrome nyc --reporter=html --report-dir=reports/coverage --lines 95 --functions 95 --branches 95 npm run mocha",
Expand Down

0 comments on commit 6fbc303

Please sign in to comment.