UNPKG

ts-std-lib

Version:
63 lines (62 loc) 2.01 kB
{ "name": "ts-std-lib", "version": "1.2.2", "description": "A standard library for typescript", "main": "./dist/index", "types": "./dist/index.d.ts", "engines": { "node": "16.13.0", "npm": "8.1.0" }, "scripts": { "build": "tsc --build", "clean": "clean-dest -s ./src -d ./dist --file-map ./scripts/clean-dest --permanent --verbose", "test": "c8 --all mocha dist/**/*.spec.js", "lint": "eslint src/**/*.ts", "watch-build": "tsc --watch", "watch-clean": "nodemon --watch ./src -e ts --exec npm run-script clean", "watch-test": "nodemon --watch ./dist -e js --exec npm run-script test", "watch-lint": "nodemon --watch ./src -e ts --exec npm run-script lint", "docs": "jsdoc2md dist/**/*.js > API.md" }, "repository": { "type": "git", "url": "git+https://github.com/SeanSobey/ts-std-lib.git" }, "author": "Sean Sobey", "license": "MIT", "bugs": { "url": "https://github.com/SeanSobey/ts-std-lib/issues" }, "homepage": "https://github.com/SeanSobey/ts-std-lib#readme", "dependencies": { "reflect-metadata": "^0.1.13", "source-map-support": "^0.5.21", "tslib": "^1.14.1", "uuid": "^7.0.3" }, "devDependencies": { "@schemastore/eslintrc": "0.0.5", "@types/faker": "^4.1.10", "@types/mocha": "^7.0.2", "@types/uuid": "^7.0.0", "@typescript-eslint/eslint-plugin": "^5.21.0", "@typescript-eslint/eslint-plugin-tslint": "^5.21.0", "@typescript-eslint/parser": "^5.21.0", "c8": "^7.1.0", "clean-dest": "^1.3.3", "del-cli": "^3.0.0", "eslint": "^8.14.0", "eslint-plugin-functional": "^4.2.1", "eslint-plugin-import": "^2.26.0", "eslint-plugin-prefer-arrow-functions": "^3.1.4", "faker": "^4.1.0", "jsdoc-to-markdown": "^5.0.3", "mocha": "^7.1.0", "nodemon": "^2.0.2", "tslint": "^6.0.0", "tslint-divid": "^1.3.0", "typemoq": "^2.1.0", "typescript": "^4.6.4" } }