UNPKG

codify-node

Version:

Generates 1D, 2D, and composite barcodes in png, svg, or eps formats.

103 lines (102 loc) 2.76 kB
{ "name": "codify-node", "version": "1.3.1", "description": "Generates 1D, 2D, and composite barcodes in png, svg, or eps formats.", "scripts": { "test:e2e": "rimraf test/e2e/__rendered__/* && jest test/e2e", "test:unit": "jest src --collectCoverage true", "test": "npm run test:unit && npm run test:e2e", "build": "tsc -p tsconfig.build.json && npm run binary:install", "bump": "bump", "binary:install": "node-pre-gyp install --fallback-to-build", "binary:rebuild": "node-pre-gyp rebuild package", "install": "node ./scripts/install.js && npm run binary:rebuild", "semantic-release": "semantic-release" }, "main": "./dist/index.js", "author": "Matej Kos <https://github.com/bojovypstros>", "license": "GPL-3.0", "repository": { "type": "git", "url": "https://github.com/bojovypstros/codify.git" }, "keywords": [ "barcode", "code 128", "qr", "ean", "upc", "isbn", "pdf417", "gs1", "aztec", "data matrix", "usps onecode", "codify" ], "engines": { "node": ">=14.0.0" }, "dependencies": { "@mapbox/node-pre-gyp": "^1.0.7", "git-clone": "0.2.0", "gunzip-maybe": "1.4.2", "nan": "2.14.2", "node-fetch": "2.6.7", "pngjs": "6.0.0", "replace-in-file": "6.0.0", "rimraf": "3.0.0", "tar-fs": "2.1.1" }, "devDependencies": { "@semantic-release/exec": "6.0.3", "@semantic-release/commit-analyzer": "9.0.2", "@semantic-release/release-notes-generator": "10.0.3", "@semantic-release/github": "8.0.6", "@types/jest": "29.2.0", "@types/jest-image-snapshot": "5.1.0", "@types/lodash": "4.14.186", "@types/pngjs": "6.0.1", "@typescript-eslint/eslint-plugin": "4.33.0", "@typescript-eslint/parser": "4.33.0", "codecov": "3.8.2", "eslint": "7.32.0", "jest": "29.2.1", "jest-image-snapshot": "5.2.0", "ts-jest": "29.0.3", "typescript": "4.8.4", "conventional-changelog-conventionalcommits": "5.0.0", "semantic-release": "19.0.5", "version-bump-prompt": "6.1.0" }, "peerDependencies": { "@mapbox/node-pre-gyp": "1.0.2" }, "jest": { "setupFilesAfterEnv": [ "./test/setup.ts" ], "coverageThreshold": { "global": { "branches": 90, "functions": 90, "lines": 90, "statements": 90 } }, "globals": { "ts-jest": { "tsconfig": "tsconfig.json" } }, "transform": { "^.+\\.tsx?$": "ts-jest" } }, "binary": { "module_name": "codify", "module_path": "./bin/binding/bin/", "package_name": "{module_name}_{platform}_{arch}_{node_abi}.tar.gz", "host": "https://github.com/bojovypstros/codify/releases/download/" } }