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.
55 lines
1.7 KiB
JSON
55 lines
1.7 KiB
JSON
![]()
7 years ago
|
{
|
||
|
"name": "qrcode-decoder",
|
||
|
"version": "1.1.0",
|
||
|
"description": "Tool for decoding qrcode",
|
||
|
"main": "dist/index.js",
|
||
|
"jsnext:main": "dist/index.esm.js",
|
||
|
"module": "dist/index.esm.js",
|
||
|
"sideEffects": false,
|
||
|
"scripts": {
|
||
|
"clean": "rimraf ./dist",
|
||
|
"lint": "eslint src",
|
||
|
"build:self": "rollup -c config/rollup.config.js",
|
||
|
"build:esm": "rollup -c config/rollup.config.esm.js",
|
||
|
"build:aio": "rollup -c config/rollup.config.aio.js",
|
||
|
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:aio",
|
||
|
"test": "npm run lint && npm run build",
|
||
|
"zuul-test": "zuul --local 8080 --ui mocha-bdd -- test/test.js",
|
||
|
"release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags"
|
||
|
},
|
||
|
"author": "yugasun",
|
||
|
"license": "MIT",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/yugasun/qrcode-decoder.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/yugasun/qrcode-decoder/issues"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"babel-core": "6.26.0",
|
||
|
"babel-plugin-transform-runtime": "6.23.0",
|
||
|
"babel-preset-env": "1.6.1",
|
||
|
"babel-preset-stage-2": "^6.24.1",
|
||
|
"cdkit": "1.1.0",
|
||
|
"es5-shim": "4.5.10",
|
||
|
"eslint": "4.18.2",
|
||
|
"eslint-config-airbnb-base": "^13.1.0",
|
||
|
"eslint-plugin-import": "^2.14.0",
|
||
|
"expect.js": "0.3.1",
|
||
|
"jsdom": "^13.0.0",
|
||
|
"mocha": "3.5.3",
|
||
|
"mocha-jsdom": "^2.0.0",
|
||
|
"rimraf": "2.6.2",
|
||
|
"rollup": "0.57.1",
|
||
|
"rollup-plugin-babel": "3.0.3",
|
||
|
"rollup-plugin-commonjs": "8.3.0",
|
||
|
"rollup-plugin-node-resolve": "3.0.3",
|
||
|
"zuul": "^3.12.0"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"babel-polyfill": "^6.26.0",
|
||
|
"jsqr": "^1.1.1"
|
||
|
}
|
||
|
}
|