@tsdotnet/type
Advanced tools
Comparing version 1.0.11 to 1.0.12
{ | ||
"name": "@tsdotnet/type", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "A set of useful utility functions for JavaScript run-time type checking and inspection.", | ||
@@ -21,12 +21,12 @@ "author": "electricessence", | ||
"scripts": { | ||
"build:dist": "rimraf dist/* && copyfiles -u 1 src/**/*.d.ts dist && tsc", | ||
"build:dist": "rimraf dist/* && tsc && copyfiles -u 1 src/**/*.d.ts dist", | ||
"build:dist-esm": "rimraf dist-esm/* && tsc -p tsconfig.esm.json", | ||
"build": "pnpm i && run-p build:*", | ||
"bump": "npm run precommit && npm version patch", | ||
"docs": "rimraf docs/* && rimraf docs/.nojekyll && typedoc --options typedoc.json --readme none", | ||
"build": "pnpm i && pnpm run build:dist && pnpm run build:dist-esm", | ||
"bump": "npm run-script precommit && npm version patch", | ||
"docs": "rimraf docs/* && typedoc --options typedoc.json --readme none", | ||
"lint": "eslint src/**/*.ts", | ||
"precommit": "pnpm i && run-p lint test && run-p build:* && npm run validate && git status -s", | ||
"prepublishOnly": "npm run build && run-p validate test", | ||
"precommit": "pnpm i && run-p lint test && run-p build:* && npm run-script validate && git status -s", | ||
"prepublishOnly": "npm run-script build && run-p validate test", | ||
"preversion": "run-p lint test", | ||
"postversion": "git push && git push --tags && npm run docs && git commit -m \"Updated docs.\" docs && git push", | ||
"postversion": "git push && git push --tags && npm run-script docs && git commit -m \"Updated docs.\" docs && git push", | ||
"test": "mocha -r ts-node/register tests/**/*.ts", | ||
@@ -44,26 +44,26 @@ "validate": "node ./.build/validate-package.js" | ||
"devDependencies": { | ||
"@types/chai": "^4.2.16", | ||
"@types/mocha": "^8.2.2", | ||
"@typescript-eslint/eslint-plugin": "^4.22.0", | ||
"@typescript-eslint/parser": "^4.22.0", | ||
"chai": "^4.3.4", | ||
"@types/chai": "^4.3.0", | ||
"@types/mocha": "^9.1.0", | ||
"@types/node": "^17.0.17", | ||
"@typescript-eslint/eslint-plugin": "^5.11.0", | ||
"@typescript-eslint/parser": "^5.11.0", | ||
"chai": "^4.3.6", | ||
"copyfiles": "^2.4.1", | ||
"eslint": "^7.24.0", | ||
"eslint": "^8.8.0", | ||
"eslint-config-typescript": "^3.0.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-import": "^2.25.4", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-promise": "^5.1.0", | ||
"mocha": "^8.3.2", | ||
"eslint-plugin-promise": "^6.0.0", | ||
"mocha": "^9.2.0", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.1.0", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^9.1.1", | ||
"typedoc": "^0.20.35", | ||
"typedoc-plugin-nojekyll": "^1.0.1", | ||
"typescript": "^4.2.4" | ||
"ts-node": "^10.5.0", | ||
"typedoc": "^0.22.11", | ||
"typescript": "^4.5.5" | ||
}, | ||
"dependencies": { | ||
"@tsdotnet/common-interfaces": "^1.0.4", | ||
"tslib": "^2.2.0" | ||
"tslib": "^2.3.1" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
37685
Updatedtslib@^2.3.1