UNPKG

fontjs

Version:

FontJS (Font.js) is a packages for TrueType font parsing and manipulation

98 lines (97 loc) 2.19 kB
{ "name": "fontjs", "version": "3.0.1", "description": "FontJS (Font.js) is a packages for TrueType font parsing and manipulation", "files": [ "build", "README.md", "LICENSE" ], "module": "./build/mjs/index.js", "main": "./build/cjs/index.js", "types": "./build/types/index.d.ts", "author": { "email": "yury@strozhevsky.com", "name": "Yury Strozhevsky" }, "contributors": [ { "email": "rmh@unmitigatedrisk.com", "name": "Ryan Hurst" } ], "scripts": { "test": "mocha", "clear": "rimraf build/* docs", "lint": "eslint .", "lint:fix": "eslint --fix .", "build": "npm run build:module && npm run build:types", "build:module": "rollup -c", "prebuild:types": "rimraf build/types", "build:types": "tsc -p tsconfig.json --outDir build/types --declaration --emitDeclarationOnly", "rebuild": "npm run clear && npm run build", "coverage": "nyc npm test", "upgrade": "yarn upgrade-interactive --latest" }, "keywords": [ "TrueType" ], "repository": { "type": "git", "url": "git://github.com/PeculiarVentures/Font.js.git" }, "devDependencies": { "@types/mocha": "^9.1.1", "@types/node": "^17.0.36", "@typescript-eslint/eslint-plugin": "^5.27.0", "@typescript-eslint/parser": "^5.27.0", "eslint": "^8.16.0", "mocha": "^10.0.0", "nyc": "^15.1.0", "rimraf": "^3.0.2", "rollup": "^2.75.3", "rollup-plugin-typescript2": "^0.31.2", "ts-node": "10.8.0", "typescript": "4.7.2" }, "dependencies": { "asn1js": "^3.0.5", "bytestreamjs": "^2.0.0", "pkijs": "^3.0.4", "pvtsutils": "^1.3.2" }, "license": "BSD-3-Clause", "mocha": { "require": [ "ts-node/register" ], "extension": [ "ts" ], "spec": [ "test/**/*.spec.ts" ] }, "nyc": { "extension": [ ".ts", ".tsx" ], "include": [ "src/**/*.ts" ], "exclude": [ "**/*.d.ts" ], "reporter": [ "lcov", "text-summary", "html" ] }, "resolutions": { "ansi-regex": "^5.0.1", "browserslist": "^4.16.5", "minimist": "^1.2.6" } }