UNPKG

@arthurgubaidullin/nx-embed-dependencies

Version:

This plugin for [Nx](https://nx.dev) helps injecting local dependencies into a package.

68 lines (67 loc) 2.06 kB
{ "name": "newtype-ts", "version": "0.3.5", "description": "Implementation of newtypes in TypeScript", "files": [ "lib", "es6" ], "main": "lib/index.js", "module": "es6/index.js", "typings": "lib/index.d.ts", "sideEffects": false, "scripts": { "lint": "tslint -p .", "typings-checker": "typings-checker --allow-expect-error --project typings-checker/tsconfig.json typings-checker/index.ts", "jest": "jest", "prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"", "fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test}/**/*.ts\"", "test": "npm run prettier && npm run lint && npm run typings-checker && npm run jest && npm run docs", "clean": "rm -rf lib/* es6/*", "prebuild": "npm run clean", "build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json", "prepublish": "npm run build", "docs": "docs-ts", "postbuild": "import-path-rewrite" }, "repository": { "type": "git", "url": "https://github.com/gcanti/newtype-ts.git" }, "author": "Giulio Canti <giulio.canti@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/gcanti/newtype-ts/issues" }, "homepage": "https://github.com/gcanti/newtype-ts", "peerDependencies": { "fp-ts": "^2.0.0", "monocle-ts": "^2.0.0" }, "devDependencies": { "@types/jest": "^22.2.2", "@types/node": "^10.12.21", "docs-ts": "^0.3.4", "fp-ts": "^2.0.0", "import-path-rewrite": "github:gcanti/import-path-rewrite", "jest": "^24.8.0", "monocle-ts": "^2.0.0", "prettier": "^1.13.5", "ts-jest": "^24.0.2", "ts-node": "3.3.0", "tslint": "^5.9.1", "tslint-config-standard": "^7.0.0", "typescript": "^3.5.1", "typings-checker": "^2.0.0" }, "tags": [ "typescript", "newtype", "functional-programming" ], "keywords": [ "typescript", "newtype", "functional-programming" ] }