UNPKG

linqts

Version:
83 lines (82 loc) 2.02 kB
{ "name": "linqts", "version": "3.1.0", "description": "LinQ + TypeScript", "es2015": "index.ts", "source": "index.ts", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "scripts": { "build": "tsc", "check-coverage": "nyc check-coverage --statements 100 --branches 98 --functions 98 --lines 100", "commit": "git-cz", "cover": "nyc --require ts-node/register --reporter=lcov npm t", "docs": "typedoc --out ../docs/ src/index.ts -m commonjs -t ES6", "nyan": "ava --tap | tap-nyan", "prebuild": "rimraf dist", "pretty": "prettier src/*.ts --write", "test": "nyc ava", "validate": "npm run cover && npm run check-coverage" }, "repository": { "type": "git", "url": "https://github.com/kutyel/linq.ts.git" }, "keywords": [ "linq", "typescript" ], "files": [ "dist", "linq.ts", "readme.md" ], "author": { "name": "Flavio Corpa", "email": "flaviocorpa@gmail.com", "url": "https://github.com/kutyel" }, "license": "MIT", "bugs": { "url": "https://github.com/kutyel/linq.ts/issues" }, "homepage": "https://github.com/kutyel/linq.ts#readme", "devDependencies": { "@ava/typescript": "^4.0.0", "all-contributors-cli": "^6.20.0", "ava": "^5.2.0", "commitizen": "^4.3.0", "cz-conventional-changelog": "^2.1.0", "esm": "^3.2.25", "ghooks": "^2.0.4", "nyc": "^15.1.0", "prettier": "^1.13.7", "rimraf": "^2.6.2", "tap-nyan": "^1.1.0", "ts-node": "^7.0.0", "tslint": "^5.10.0", "tslint-config-prettier": "^1.13.0", "tslint-config-standard": "^7.1.0", "typedoc": "^0.26.5", "typescript": "^5.5.4" }, "config": { "ghooks": { "pre-commit": "npm run validate" }, "commitizen": { "path": "node_modules/cz-conventional-changelog" } }, "ava": { "typescript": { "rewritePaths": { "src/": "build/" }, "compile": "tsc" }, "require": [ "ts-node/register" ] } }