@tsdotnet/array-init
Advanced tools
Comparing version 1.0.9 to 1.0.11
{ | ||
"name": "@tsdotnet/array-init", | ||
"version": "1.0.9", | ||
"version": "1.0.11", | ||
"description": "Commonly used array initializer that optimizes for length.", | ||
@@ -20,11 +20,11 @@ "author": "electricessence", | ||
"build:dist-esm": "rimraf dist-esm/* && tsc -p tsconfig.esm.json", | ||
"build": "npm i && run-p build:*", | ||
"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 && node ./.build/create-nojekyll.js", | ||
"docs": "rimraf docs/* && rimraf docs/.nojekyll && typedoc --options typedoc.json --readme none", | ||
"lint": "eslint src/**/*.ts", | ||
"precommit": "npm i && run-p lint test && run-p build:* && npm run validate", | ||
"precommit": "pnpm i && run-p lint test && run-p build:* && npm run validate", | ||
"prepublishOnly": "npm run 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", | ||
"test": "ts-node -P ./tsconfig.json ./node_modules/jasmine/bin/jasmine --config=spec/jasmine.json", | ||
"test": "mocha -r ts-node/register tests/**/*.ts", | ||
"validate": "node ./.build/validate-package.js" | ||
@@ -41,5 +41,7 @@ }, | ||
"devDependencies": { | ||
"@types/jasmine": "^3.5.10", | ||
"@typescript-eslint/eslint-plugin": "^2.34.0", | ||
"@typescript-eslint/parser": "^2.34.0", | ||
"@types/chai": "^4.2.11", | ||
"@types/mocha": "^7.0.2", | ||
"@typescript-eslint/eslint-plugin": "^3.0.0", | ||
"@typescript-eslint/parser": "^3.0.0", | ||
"chai": "^4.2.0", | ||
"copyfiles": "^2.2.0", | ||
@@ -51,9 +53,12 @@ "eslint": "^7.0.0", | ||
"eslint-plugin-promise": "^4.2.1", | ||
"jasmine": "^3.5.0", | ||
"mocha": "^7.1.2", | ||
"npm-run-all": "^4.1.5", | ||
"nyc": "^15.0.1", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^8.10.1", | ||
"typedoc": "^0.17.7", | ||
"typescript": "^3.9.2" | ||
"typedoc-plugin-external-module-name": "^3.1.0", | ||
"typedoc-plugin-nojekyll": "^1.0.1", | ||
"typescript": "^3.9.3" | ||
} | ||
} |
6262
20