-
Bekerle, Patrizio authoredBekerle, Patrizio authored
This project manages its dependencies using npm.
Learn more
package.json 1.59 KiB
{
"name": "@dbp-toolkit/file-handling",
"version": "0.1.1",
"main": "src/index.js",
"license": "LGPL-2.1-or-later",
"devDependencies": {
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^10.0.0",
"chai": "^4.2.0",
"i18next-scanner": "^3.0.0",
"karma": "^5.0.1",
"karma-chrome-launcher": "^3.0.0",
"karma-firefox-launcher": "^2.1.0",
"karma-mocha": "^2.0.0",
"mocha": "^8.0.1",
"rollup": "^2.18.0",
"rollup-plugin-consts": "^1.0.1",
"rollup-plugin-copy": "^3.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-serve": "^1.0.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@open-wc/scoped-elements": "^1.3.2",
"@dbp-toolkit/common": "^0.1.0",
"file-saver": "^2.0.2",
"i18next": "^19.8.3",
"jszip": "^3.5.0",
"lit-element": "^2.1.0",
"lit-html": "^1.1.1",
"material-design-icons-svg": "^3.0.0",
"tabulator-tables": "^4.8.4",
"webdav": "^3.6.1"
},
"scripts": {
"clean": "rm dist/*",
"build": "npm run build-local",
"build-local": "rollup -c",
"build-dev": "rollup -c --environment BUILD:development",
"build-prod": "rollup -c --environment BUILD:production",
"build-demo": "rollup -c --environment BUILD:demo",
"build-test": "rollup -c --environment BUILD:test",
"i18next": "i18next-scanner",
"watch": "npm run watch-local",
"watch-local": "rollup -c --watch",
"watch-dev": "rollup -c --watch --environment BUILD:development",
"test": "npm run build-test && karma start --singleRun"
}
}