Skip to content
Snippets Groups Projects
package.json 1.41 KiB
Newer Older
Reiter, Christoph's avatar
Reiter, Christoph committed
{
  "name": "vpu-language-select",
Reiter, Christoph's avatar
Reiter, Christoph committed
  "version": "1.0.0",
  "main": "src/index.js",
Reiter, Christoph's avatar
Reiter, Christoph committed
  "license": "LGPL-2.1-or-later",
Reiter, Christoph's avatar
Reiter, Christoph committed
  "devDependencies": {
    "karma": "^5.0.1",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^3.0.0",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "karma-mocha": "^2.0.1",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "node-sass": "^4.12.0",
    "puppeteer": "^2.1.1",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "mocha": "^8.0.1",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "chai": "^4.2.0",
    "rollup": "^2.6.1",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "@rollup/plugin-commonjs": "^13.0.0",
    "@rollup/plugin-node-resolve": "^8.1.0",
    "@rollup/plugin-json": "^4.0.0",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "rollup-plugin-consts": "^1.0.1",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "rollup-plugin-copy": "^3.1.0",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "rollup-plugin-serve": "^1.0.1",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "rollup-plugin-terser": "^6.1.0",
    "rollup-plugin-delete": "^2.0.0",
    "vpu-common": "^1.0.0"
Reiter, Christoph's avatar
Reiter, Christoph committed
  },
  "dependencies": {
    "@open-wc/scoped-elements": "^1.0.8",
Reiter, Christoph's avatar
Reiter, Christoph committed
    "lit-element": "^2.2.1"
Reiter, Christoph's avatar
Reiter, Christoph committed
  },
  "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"
  }
}