UNPKG

@skhemata/skhemata-crowdfunding-campaign

Version:

Skhemata Crowdfunding Campaign Web Component. This web component provides crowdfunding campaign functionality (reward/donation based) for a website.

97 lines (96 loc) 3.14 kB
{ "name": "@skhemata/skhemata-crowdfunding-campaign", "version": "1.6.0", "description": "Skhemata Crowdfunding Campaign Web Component. This web component provides crowdfunding campaign functionality (reward/donation based) for a website.", "author": "skhemata-crowdfunding-campaign", "license": "https://raw.githubusercontent.com/skhemata/skhemata-crowdfunding-campaign/master/LICENSE", "repository": { "type": "git", "url": "https://github.com/skhemata/skhemata-crowdfunding-campaign.git" }, "keywords": [ "skhemata", "faq", "web component" ], "main": "dist/index.js", "module": "dist/index.js", "scripts": { "start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"", "build": "tsc", "build-widget": "mkdir build && rollup -c", "prepublish": "tsc", "lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore", "format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore", "test": "tsc && wtr --coverage", "test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"", "storybook": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds -c .storybook/server.mjs\"", "storybook:build": "tsc && build-storybook" }, "dependencies": { "@open-wc/scoped-elements": "^1.3.5", "@power-elements/stripe-elements": "^3.3.0", "@skhemata/skhemata-base": "^1.1.0", "@skhemata/skhemata-css": "^1.1.0", "lit": "^2.4.0", "lit-html": "^2.0.0-rc.3", "stripe": "^10.16.0" }, "devDependencies": { "@babel/core": "^7.2.2", "@babel/plugin-proposal-class-properties": "^7.2.3", "@babel/plugin-proposal-decorators": "^7.2.3", "@open-wc/eslint-config": "^4.3.0", "@open-wc/testing": "^2.5.33", "@typescript-eslint/eslint-plugin": "^4.28.3", "@typescript-eslint/parser": "^4.28.3", "@web/dev-server": "^0.1.18", "@web/dev-server-storybook": "^0.3.6-next.0", "@web/test-runner": "^0.12.20", "@webcomponents/webcomponentsjs": "^2.2.4", "concurrently": "^5.3.0", "eslint": "^7.30.0", "eslint-config-prettier": "^7.2.0", "husky": "^4.3.8", "lint-staged": "^10.5.4", "prettier": "^2.2.1", "rollup": "^1.1.0", "rollup-plugin-babel": "^4.3.0", "rollup-plugin-node-resolve": "^4.0.0", "tslib": "^2.3.0", "typescript": "^4.3.5" }, "eslintConfig": { "parser": "@typescript-eslint/parser", "extends": [ "@open-wc/eslint-config", "eslint-config-prettier" ], "plugins": [ "@typescript-eslint" ], "rules": { "no-unused-vars": "off", "@typescript-eslint/no-unused-vars": [ "error" ], "import/no-unresolved": "off", "import/extensions": "off" } }, "prettier": { "singleQuote": true, "arrowParens": "avoid" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.ts": [ "eslint --fix", "prettier --write" ] } }