|
|
@ -1,6 +1,6 @@
|
|
|
|
{
|
|
|
|
{
|
|
|
|
"name": "qrcode-decoder",
|
|
|
|
"name": "qrcode-decoder",
|
|
|
|
"version": "1.1.0",
|
|
|
|
"version": "0.1.0",
|
|
|
|
"description": "Tool for decoding qrcode",
|
|
|
|
"description": "Tool for decoding qrcode",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"main": "dist/index.js",
|
|
|
|
"jsnext:main": "dist/index.esm.js",
|
|
|
|
"jsnext:main": "dist/index.esm.js",
|
|
|
@ -12,8 +12,9 @@
|
|
|
|
"build:self": "rollup -c config/rollup.config.js",
|
|
|
|
"build:self": "rollup -c config/rollup.config.js",
|
|
|
|
"build:esm": "rollup -c config/rollup.config.esm.js",
|
|
|
|
"build:esm": "rollup -c config/rollup.config.esm.js",
|
|
|
|
"build:aio": "rollup -c config/rollup.config.aio.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 && npm run copy-file",
|
|
|
|
"build:aio.min": "NODE_ENV=production npm run build:aio",
|
|
|
|
"copy-file": "cp dist/index.aio.js demo/",
|
|
|
|
"build": "npm run clean && npm run build:self && npm run build:esm && npm run build:aio && npm run build:aio.min && npm run copy-file",
|
|
|
|
|
|
|
|
"copy-file": "cp dist/index.aio.min.js demo/",
|
|
|
|
"test": "npm run lint && npm run build",
|
|
|
|
"test": "npm run lint && npm run build",
|
|
|
|
"zuul-test": "zuul --local 8080 --ui mocha-bdd -- test/test.js",
|
|
|
|
"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",
|
|
|
|
"release": "git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags",
|
|
|
|