| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- {
- "_from": "@zxing/library",
- "_id": "@zxing/library@0.21.3",
- "_inBundle": false,
- "_integrity": "sha512-hZHqFe2JyH/ZxviJZosZjV+2s6EDSY0O24R+FQmlWZBZXP9IqMo7S3nb3+2LBWxodJQkSurdQGnqE7KXqrYgow==",
- "_location": "/@zxing/library",
- "_phantomChildren": {},
- "_requested": {
- "type": "tag",
- "registry": true,
- "raw": "@zxing/library",
- "name": "@zxing/library",
- "escapedName": "@zxing%2flibrary",
- "scope": "@zxing",
- "rawSpec": "",
- "saveSpec": null,
- "fetchSpec": "latest"
- },
- "_requiredBy": [
- "#USER",
- "/"
- ],
- "_resolved": "https://mirrors.huaweicloud.com/repository/npm/@zxing/library/-/library-0.21.3.tgz",
- "_shasum": "0a4cb777701884131832b05922d7e88ef1b87ab4",
- "_spec": "@zxing/library",
- "_where": "E:\\git\\2021项目\\v3-H5",
- "authors": [
- {
- "name": "Adrian Toșcă"
- },
- {
- "name": "David Werth",
- "email": "werth.david@gmail.com"
- },
- {
- "name": "Luiz Barni",
- "email": "machado@odahcam.com"
- }
- ],
- "bugs": {
- "url": "https://github.com/zxing-js/library/issues/new"
- },
- "bundleDependencies": false,
- "collective": {
- "type": "opencollective",
- "url": "https://opencollective.com/zxing-js",
- "logo": "https://opencollective.com/zxing-js/logo.txt"
- },
- "dependencies": {
- "@zxing/text-encoding": "~0.9.0",
- "ts-custom-error": "^3.2.1"
- },
- "deprecated": false,
- "description": "TypeScript port of ZXing multi-format 1D/2D barcode image processing library.",
- "devDependencies": {
- "@rollup/plugin-node-resolve": "^7.1.3",
- "@types/chai": "^4.1.7",
- "@types/mocha": "^5.2.6",
- "@types/node": "^10.12.29",
- "@types/seedrandom": "^2.4.27",
- "@types/sharp": "^0.22.2",
- "@zxing/text-encoding": "~0.9.0",
- "chai": "^4.2.0",
- "codacy-coverage": "^3.4.0",
- "eslint": "^5.15.1",
- "karma": "^6.3.16",
- "karma-chai": "^0.1.0",
- "karma-chrome-launcher": "^2.2.0",
- "karma-coverage": "^1.1.2",
- "karma-mocha": "^1.3.0",
- "karma-remap-coverage": "^0.1.5",
- "karma-sinon": "^1.0.5",
- "karma-sourcemap-loader": "^0.3.7",
- "karma-typescript": "^3.0.13",
- "karma-typescript-preprocessor": "^0.4.0",
- "mocha": "^6.2.3",
- "mocha-lcov-reporter": "^1.3.0",
- "nyc": "^15.1.0",
- "rollup": "^2.8.2",
- "seedrandom": "^2.4.4",
- "sharp": "^0.32.6",
- "shx": "0.3.4",
- "sinon": "^7.2.7",
- "terser": "^5.16.1",
- "ts-node": "^9.0.0",
- "tsconfig-paths": "^3.9.0",
- "tslint": "^6.1.3",
- "tslint-no-circular-imports": "^0.7.0",
- "typescript": "^3",
- "yarn": "^1.17.3"
- },
- "engines": {
- "node": ">= 10.4.0"
- },
- "esnext": "./es2015/index.js",
- "homepage": "https://zxing-js.github.io/library/",
- "keywords": [
- "reader",
- "writer",
- "decode",
- "encode",
- "scanner",
- "generator",
- "barcode",
- "qr-code",
- "barcode 1d",
- "barcode 2d",
- "typescript",
- "zxing"
- ],
- "license": "MIT",
- "main": "./cjs/index.js",
- "module": "./esm/index.js",
- "name": "@zxing/library",
- "optionalDependencies": {
- "@zxing/text-encoding": "~0.9.0"
- },
- "private": false,
- "repository": {
- "type": "git",
- "url": "git+https://github.com/zxing-js/library.git"
- },
- "scripts": {
- "build": "yarn clean && yarn build:es2015 && yarn build:esm && yarn build:esnext && yarn build:cjs && yarn build:umd && yarn build:umd:min && yarn build:copy",
- "build:cjs": "tsc --build tsconfig.lib-cjs.json",
- "build:copy": "cp README.md dist && cp package.json dist && cp LICENSE dist",
- "build:es2015": "tsc --build tsconfig.lib-es2015.json",
- "build:esm": "tsc --build tsconfig.lib-esm.json",
- "build:esnext": "tsc --build tsconfig.lib-esm.json",
- "build:umd": "rollup -c rollup.config.js",
- "build:umd:min": "cd dist/umd && terser --compress --mangle --source-map --screw-ie8 --comments -o index.min.js -- index.js && gzip index.min.js -c > index.min.js.gz",
- "clean": "yarn shx rm -rf dist output",
- "cover": "nyc --reporter=lcov --reporter=text yarn test",
- "lint": "yarn tslint --project .",
- "shx": "shx",
- "test": "yarn test:build && yarn test:run",
- "test:build": "tsc --build tsconfig.test.json",
- "test:run": "mocha -r tsconfig-paths/register --timeout 200000 output/tests/**/*.spec.js",
- "tsc": "tsc",
- "tslint": "tslint \"./src/**/*.ts\""
- },
- "typings": "./esm/index.d.ts",
- "unpkg": "./umd/index.min.js",
- "version": "0.21.3"
- }
|