UNPKG

pure-fun

Version:

A collection of pure functions/helpers with 0 dependencies

56 lines (55 loc) 1.43 kB
{ "name": "pure-fun", "version": "2.0.0", "description": "A collection of pure functions/helpers with 0 dependencies", "main": "dist/pure-fun.js", "module": "dist/pure-fun.mjs", "unpkg": "dist/pure-fun.umd.js", "source": "src/index.ts", "typings": "dist/pure-fun.d.ts", "scripts": { "build": "microbundle", "start": "microbundle watch", "lint:fix": "eslint src/ --fix", "lint:build": "eslint esm/ --fix", "lint": "eslint ./", "release": "np", "test": "jest", "test:watch": "jest --watch", "update": "npm-check -u -E --production", "update:dev": "npm-check -u -E --dev-only" }, "repository": { "type": "git", "url": "git+https://github.com/thibmaek/pure-fun.git" }, "keywords": [ "pure", "functions", "fp", "helper", "util", "pure-functions", "typescript" ], "author": "Thibault Maekelbergh", "license": "MIT", "bugs": { "url": "https://github.com/thibmaek/pure-fun/issues" }, "homepage": "https://github.com/thibmaek/pure-fun#readme", "devDependencies": { "@babel/core": "^7.4.4", "@babel/preset-env": "^7.4.4", "@babel/preset-typescript": "^7.3.3", "babel-jest": "^24.8.0", "eslint": "^5.4.0", "eslint-config-thibmaek": "^1.0.4", "husky": "^1.0.1", "jest": "24.8.0", "lint-staged": "^8.0.0", "microbundle": "^0.11.0", "np": "^2.18.3", "npm-check": "^5.9.0" } }