@bitty/nullish
Advanced tools
Comparing version 0.0.4 to 0.0.5
132
package.json
{ | ||
"name": "@bitty/nullish", | ||
"version": "0.0.4", | ||
"description": "Nullish helper functions and types for TypeScript.", | ||
"sideEffects": false, | ||
"cdn": "dist/main.umd.js", | ||
"main": "dist/main.js", | ||
"types": "types/main.d.ts", | ||
"unpkg": "dist/main.umd.js", | ||
"module": "dist/main.esm.js", | ||
"jsdelivr": "dist/main.umd.js", | ||
"umd:main": "dist/main.umd.js", | ||
"files": [ | ||
"dist/", | ||
"types/" | ||
], | ||
"keywords": [ | ||
"null", | ||
"undefined", | ||
"nully", | ||
"nullable", | ||
"non-nullable", | ||
"predicate", | ||
"type", | ||
"types", | ||
"type-guard", | ||
"type-predicate", | ||
"type-helper", | ||
"typescript", | ||
"typescript-types", | ||
"fp", | ||
"functional programming", | ||
"function", | ||
"functional" | ||
], | ||
"scripts": { | ||
"test": "pnpm run test:code-style && pnpm run test:unit", | ||
"test:transpile": "tsc --project ./tsconfig.test.json", | ||
"test:unit": "pnpm run test:transpile && ava", | ||
"test:code-style": "prettier --check \"./src/**/*.ts\"", | ||
"build": "pnpm run build:transpile && pnpm run build:bundle", | ||
"build:transpile": "tsc --project ./tsconfig.build.json", | ||
"build:bundle": "rollup --config rollup.config.js", | ||
"prepublishOnly": "pnpm run test && pnpm run build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/VitorLuizC/bitty.git", | ||
"directory": "packages/nullish" | ||
}, | ||
"author": { | ||
"url": "https://vitorluizc.github.io/", | ||
"name": "Vitor Luiz Cavalcanti", | ||
"email": "vitorluizc@outlook.com" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/VitorLuizC/bitty/issues" | ||
}, | ||
"homepage": "https://github.com/VitorLuizC/bitty/tree/master/packages/pipe", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"ava": "^3.11.1", | ||
"prettier": "^2.0.5", | ||
"rollup": "^2.23.1", | ||
"rollup-plugin-terser": "^7.0.0", | ||
"typescript": "^3.9.7" | ||
} | ||
"name": "@bitty/nullish", | ||
"version": "0.0.5", | ||
"description": "Nullish helper functions and types for TypeScript.", | ||
"sideEffects": false, | ||
"cdn": "dist/main.umd.js", | ||
"main": "dist/main.js", | ||
"types": "types/main.d.ts", | ||
"unpkg": "dist/main.umd.js", | ||
"module": "dist/main.esm.js", | ||
"jsdelivr": "dist/main.umd.js", | ||
"umd:main": "dist/main.umd.js", | ||
"files": [ | ||
"dist/", | ||
"types/" | ||
], | ||
"keywords": [ | ||
"null", | ||
"undefined", | ||
"nully", | ||
"nullable", | ||
"non-nullable", | ||
"predicate", | ||
"type", | ||
"types", | ||
"type-guard", | ||
"type-predicate", | ||
"type-helper", | ||
"typescript", | ||
"typescript-types", | ||
"fp", | ||
"functional programming", | ||
"function", | ||
"functional" | ||
], | ||
"scripts": { | ||
"test": "pnpm run test:code-style && pnpm run test:unit", | ||
"test:transpile": "tsc --project ./tsconfig.test.json", | ||
"test:unit": "pnpm run test:transpile && ava", | ||
"test:code-style": "prettier --check \"./src/**/*.ts\"", | ||
"build": "pnpm run build:transpile && pnpm run build:bundle", | ||
"build:transpile": "tsc --project ./tsconfig.build.json", | ||
"build:bundle": "rollup --config rollup.config.js", | ||
"prepublishOnly": "pnpm run test && pnpm run build" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/VitorLuizC/bitty.git", | ||
"directory": "packages/nullish" | ||
}, | ||
"author": { | ||
"url": "https://vitorluizc.github.io/", | ||
"name": "Vitor Luiz Cavalcanti", | ||
"email": "vitorluizc@outlook.com" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/VitorLuizC/bitty/issues" | ||
}, | ||
"homepage": "https://github.com/VitorLuizC/bitty/tree/master/packages/pipe", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"ava": "^3.12.1", | ||
"prettier": "^2.1.1", | ||
"rollup": "^2.26.10", | ||
"rollup-plugin-terser": "^7.0.2", | ||
"typescript": "^4.0.2" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9814