UNPKG

gulp-ttf2woff

Version:
181 lines (180 loc) 4.25 kB
{ "metapak": { "configs": [ "main", "readme", "tsesm", "jest", "eslint", "ghactions" ], "data": { "files": "'src/**/*.ts'", "testsFiles": "'src/**/*.test.ts'", "distFiles": "'dist/**/*.js'", "ignore": [ "dist", "src/tests/results" ], "bundleFiles": [ "dist", "src" ] } }, "name": "gulp-ttf2woff", "description": "Create a WOFF font from a TTF one", "version": "2.0.0", "homepage": "https://github.com/nfroidure/gulp-ttf2woff", "author": { "name": "Nicolas Froidure", "email": "nicolas.froidure@insertafter.com", "url": "http://insertafter.com/en/index.html" }, "repository": { "type": "git", "url": "git://github.com/nfroidure/gulp-ttf2woff.git" }, "bugs": { "url": "https://github.com/nfroidure/gulp-ttf2woff/issues" }, "licenses": [ { "type": "MIT", "url": "https://github.com/nfroidure/gulp-ttf2woff/blob/master/LICENSE" } ], "main": "dist/index.js", "engines": { "node": ">=20.11.1" }, "scripts": { "build": "rimraf 'dist' && tsc --outDir dist", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md", "cli": "env NODE_ENV=${NODE_ENV:-cli}", "cover": "npm run jest -- --coverage", "cz": "env NODE_ENV=${NODE_ENV:-cli} git cz", "format": "npm run prettier", "jest": "NODE_OPTIONS=--experimental-vm-modules NODE_ENV=test jest", "lint": "eslint 'src/**/*.ts'", "metapak": "metapak", "precz": "npm t && npm run lint && npm run metapak -- -s && npm run build", "prettier": "prettier --write 'src/**/*.ts'", "preversion": "npm t && npm run lint && npm run metapak -- -s && npm run build", "rebuild": "swc ./src -s -d dist -C jsc.target=es2022", "test": "npm run jest", "type-check": "tsc --pretty --noEmit", "version": "npm run changelog" }, "dependencies": { "@types/vinyl": "^2.0.12", "bufferstreams": "^4.0.0", "plugin-error": "^2.0.1", "replace-ext": "^2.0.0", "ttf2woff": "^3.0.0" }, "keywords": [ "gulpplugin", "gulp", "gulp-plugin", "font", "woff", "ttf", "converter" ], "devDependencies": { "@eslint/js": "^9.7.0", "@swc/cli": "^0.4.0", "@swc/core": "^1.6.13", "@swc/helpers": "^0.5.12", "@swc/jest": "^0.2.36", "@types/gulp": "^4.0.17", "commitizen": "^4.3.0", "conventional-changelog-cli": "^5.0.0", "cz-conventional-changelog": "^3.3.0", "eslint": "^9.7.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jest": "^28.6.0", "eslint-plugin-prettier": "^5.1.3", "gulp": "^5.0.0", "jest": "^29.7.0", "metapak": "^6.0.1", "metapak-nfroidure": "18.2.0", "prettier": "^3.3.3", "rimraf": "^6.0.1", "streamtest": "^3.0.1", "typescript": "^5.5.3", "typescript-eslint": "^7.16.0", "vinyl": "^3.0.0" }, "contributors": [], "license": "MIT", "files": [ "dist", "src", "LICENSE", "README.md", "CHANGELOG.md" ], "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } }, "greenkeeper": { "ignore": [ "commitizen", "cz-conventional-changelog", "conventional-changelog-cli", "typescript", "rimraf", "@swc/cli", "@swc/core", "@swc/helpers", "jest", "@swc/jest", "eslint", "prettier", "eslint-config-prettier", "eslint-plugin-prettier", "typescript-eslint" ] }, "type": "module", "types": "dist/index.d.ts", "jest": { "coverageReporters": [ "lcov" ], "testPathIgnorePatterns": [ "/node_modules/" ], "roots": [ "<rootDir>/src" ], "transform": { "^.+\\.tsx?$": [ "@swc/jest", {} ] }, "testEnvironment": "node", "moduleNameMapper": { "(.+)\\.js": "$1" }, "extensionsToTreatAsEsm": [ ".ts" ], "prettierPath": null }, "overrides": { "eslint": "^9.7.0" }, "prettier": { "semi": true, "printWidth": 80, "singleQuote": true, "trailingComma": "all", "proseWrap": "always" } }