hkts
Version:
A simple encoding of higher-kinded types in TypeScript
28 lines (27 loc) • 711 B
JSON
{
"name": "hkts",
"version": "0.3.1",
"description": "A simple encoding of higher-kinded types in TypeScript",
"keywords:": [
"typescript",
"higher",
"kinded",
"types"
],
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"author": "Thomas Crockett",
"license": "MIT",
"devDependencies": {
"@types/jest": "^23.3.1",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"ts-jest": "^23.1.4",
"typescript": "^3.0.1"
},
"scripts": {
"build": "tsc",
"format": "prettier $([ \"$CI\" == true ] && echo --list-different || echo --write) './**/*.{ts,tsx,js,json,css}'",
"test": "jest $([ \"$CI\" == true ] && echo --no-cache --verbose --coverage)"
}
}