Comparing version 1.1.1 to 1.1.2
{ | ||
"name": "givens", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "Easy test setup without side effects", | ||
@@ -13,18 +13,30 @@ "main": "dist/index.js", | ||
"scripts": { | ||
"prepack": "npm run build", | ||
"install:tests": "npm-run-all install:tests:**", | ||
"install:tests:jest": "cd integration-tests/jest && npm i --no-package-lock", | ||
"install:tests:mocha": "cd integration-tests/mocha && npm i --no-package-lock", | ||
"build": "tsc --removeComments", | ||
"build:tests": "tsc --inlineSourceMap", | ||
"lint": "eslint ./src/**.* --ext .ts", | ||
"lint:fix": "eslint -c .eslintrc.js --fix ./src", | ||
"test": "npm-run-all --aggregate-output --continue-on-error --parallel --print-label test:**", | ||
"test:unit:jest": "jest test/unit/jest/**.spec.ts --config jest-unit.config.js --color", | ||
"test:unit:mocha": "mocha test/unit/mocha/**.spec.js --color", | ||
"test:integration:jest": "jest test/integration/jest/**.test.js --config jest-integration.config.js --color", | ||
"test:integration:mocha": "mocha test/integration/mocha/**.test.js --color" | ||
"lint": "npm-run-all --continue-on-error lint:**", | ||
"lint:main": "eslint ./src/**.* ./test/**.* --ext .ts", | ||
"lint:jest": "cd integration-tests/jest && npm run lint", | ||
"lint:mocha": "cd integration-tests/mocha && npm run lint", | ||
"test": "npm-run-all --continue-on-error test:**", | ||
"test:unit": "jest", | ||
"test:jest": "cd integration-tests/jest && npm test", | ||
"test:mocha": "cd integration-tests/mocha && npm test", | ||
"clean": "./clean.sh" | ||
}, | ||
"keywords": [ | ||
"jest", | ||
"mocha", | ||
"given", | ||
"let", | ||
"test", | ||
"rspec" | ||
"testing", | ||
"unit", | ||
"rspec", | ||
"testing", | ||
"typescript", | ||
"javascript" | ||
], | ||
@@ -42,8 +54,4 @@ "author": "Mason Boeman", | ||
"eslint-plugin-import": "^2.20.0", | ||
"eslint-plugin-jasmine": "^4.1.0", | ||
"eslint-plugin-jest": "^23.2.0", | ||
"eslint-plugin-mocha": "^6.2.2", | ||
"jasmine": "^3.5.0", | ||
"jest": "^24.9.0", | ||
"mocha": "^6.2.2", | ||
"npm-run-all": "^4.1.5", | ||
@@ -50,0 +58,0 @@ "ts-jest": "^24.3.0", |
14376
13