UNPKG

typescript-miscellaneous

Version:
68 lines (67 loc) 1.79 kB
{ "name": "typescript-miscellaneous", "version": "0.1.1", "description": "Miscellaneous TypeScript utilities", "main": "index.js", "types": "index.d.ts", "directories": { "lib": "lib", "test": "test" }, "repository": { "type": "git", "url": "git+https://github.com/ksxnodemodules/typescript-miscellaneous.git" }, "keywords": [ "typescript", "miscellaneous", "utility" ], "author": "Hoàng Văn Khải <hvksmr1996@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/ksxnodemodules/typescript-miscellaneous/issues" }, "homepage": "https://github.com/ksxnodemodules/typescript-miscellaneous#readme", "dependencies": { "@types/node": "^10.11.3", "tslib": "^1.9.3" }, "devDependencies": { "typescript": "^3.1.1", "standard": "^12.0.1", "tslint": "^5.11.0", "tslint-config-standard": "^8.0.1", "jest": "^23.6.0", "babel-jest": "^23.6.0", "ts-jest": "^23.10.3", "yaml-jest": "^1.0.5", "iter-tools": "^6.1.4", "static-type-assert": "^3.0.1", "clean-typescript-build": "^0.0.7", "@types/jest": "^23.3.2" }, "scripts": { "clean": "clean-typescript-build .", "build": "tsc", "test": "npm run clean && npm run type-check && npm run lint && jest --coverage", "type-check": "tsc --noEmit", "lint": "npm run standard && npm run tslint", "standard": "standard", "standard:fix": "npm run standard --fix", "tslint": "tslint --project .", "tslint:fix": "npm run tslint --fix", "prepublishOnly": "npm test && npm run build", "postpublish": "npm run clean" }, "standard": { "env": { "jest": true, "browser": true } }, "engines": { "typescript": ">= 3.0.0", "node": ">= 8.9.0" } }