You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
quaggaJS/package.json

86 lines
2.3 KiB
JSON

{
"name": "quagga",
"version": "0.14.0",
"description": "An advanced barcode-scanner written in JavaScript / TypeScript",
"main": "dist/quagga.node.js",
"browser": "dist/quagga.min.js",
"typings": "dist/quagga.d.ts",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/async": "^3.0.1",
"@types/node": "^12.6.8",
"@types/sinon": "^7.0.13",
"async": "^3.1.0",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-istanbul": "^5.2.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"karma": "^4.2.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "~1.3.0",
"karma-sinon": "^1.0.5",
"karma-source-map-support": "^1.4.0",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.0",
"sinon": "^7.3.2",
"typescript": "^3.5.3",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-sources": "^1.3.0"
},
"directories": {
"doc": "doc"
},
"scripts": {
"test": "karma start",
"integrationtest": "karma start karma-integration.conf.js",
"build:dev": "webpack",
"build:prod": "webpack --config webpack.prod.js",
"build:node": "webpack --config webpack.node.js",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:dev && npm run build:prod && npm run build:node && npm run build:types",
"watch": "webpack --watch",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/serratus/quaggaJS.git"
},
"bugs": {
"url": "https://github.com/serratus/quaggaJS/issues"
},
"keywords": [
"quagga",
"quaggajs",
"barcode",
"ean",
"code128",
"code39",
"codabar",
"i2of5",
"upc",
"getusermedia",
"imageprocessing"
],
"author": "Christoph Oberhofer <ch.oberhofer@gmail.com>",
"contributors": [
"Alexei Domratchev <alexei.domratchev@dedal.ca>"
],
"license": "MIT",
"engines": {
"node": ">= 10.0"
},
"dependencies": {
"get-pixels": "^3.3.2",
"ndarray": "^1.0.18"
}
}