Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔧 atualiza pacotes #40

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 28 additions & 37 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -1,39 +1,30 @@
{
"presets": [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"targets": {
"chrome": "40",
"ie": "11"
}
}
]
],
"plugins": [
"@babel/plugin-transform-typescript",
[
"@babel/plugin-transform-runtime",
{
"corejs": 3,
"regenerator": true,
"useESModules": false
}
],
"@babel/plugin-transform-parameters",
"@babel/plugin-syntax-async-generators",
[
"@babel/plugin-transform-for-of",
{
"assumeArray": true // defaults to false
}
],
"@babel/plugin-transform-destructuring",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-shorthand-properties",
"@babel/plugin-transform-eval"
]
"presets": [
"@babel/preset-typescript",
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"targets": {
"chrome": "40",
"ie": "11"
}
}
]
],
"plugins": [
"@babel/plugin-transform-typescript",
"@babel/plugin-transform-parameters",
"@babel/plugin-syntax-async-generators",
[
"@babel/plugin-transform-for-of",
{
"assumeArray": true // defaults to false
}
],
"@babel/plugin-transform-destructuring",
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-object-rest-spread",
"@babel/plugin-transform-shorthand-properties"
]
}
18,989 changes: 6,478 additions & 12,511 deletions package-lock.json

Large diffs are not rendered by default.

119 changes: 55 additions & 64 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,66 +1,57 @@
{
"name": "mithril-postgrest",
"version": "4.1.0",
"author": "Diogo Biazus",
"description": "A Mithril.js plugin to authenticate requests against PostgREST",
"main": "mithril-postgrest.umd.js",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.3",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-eval": "^7.0.0-beta.38",
"@babel/plugin-transform-for-of": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime-corejs3": "^7.8.3",
"@types/jasmine": "^3.5.10",
"@types/mithril": "^2.0.3",
"@types/underscore": "^1.10.22",
"babel-eslint": "^7.1.1",
"babel-loader": "^8.0.6",
"jasmine-core": "^2.4.1",
"jasmine-expect": "^2.0.0-beta1",
"jshint-stylish": "^2.0.1",
"karma": "^0.13.9",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^0.3.6",
"karma-nodewebkit-launcher": "0.0.12",
"karma-phantomjs-launcher": "^0.2.1",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^3.0.5",
"phantomjs": "^1.9.18",
"puppeteer": "^1.14.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0",
"webpack-rollup-loader": "^0.8.0",
"yargs": "^3.24.0"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/webpack --watch",
"build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --mode production",
"postbuild:prod": "cp ./dist/mithril-postgrest.min.js ./mithril-postgrest.umd.js",
"test": "NODE_ENV=development ./node_modules/karma/bin/karma start"
},
"dependencies": {
"@babel/preset-env": "^7.9.5",
"karma-babel-preprocessor": "^5.2.2",
"mithril": "^1.1.6",
"underscore": "^1.8.3"
}
"name": "mithril-postgrest",
"version": "4.1.0",
"author": "Diogo Biazus",
"description": "A Mithril.js plugin to authenticate requests against PostgREST",
"main": "mithril-postgrest.umd.js",
"repository": {
"url": "https://github.com/catarse/mithril-postgrest"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.3",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-syntax-async-generators": "^7.8.4",
"@babel/plugin-transform-arrow-functions": "^7.8.3",
"@babel/plugin-transform-block-scoping": "^7.8.3",
"@babel/plugin-transform-classes": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.8.3",
"@babel/plugin-transform-for-of": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/plugin-transform-parameters": "^7.8.3",
"@babel/plugin-transform-react-jsx": "^7.9.4",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/plugin-transform-shorthand-properties": "^7.8.3",
"@babel/plugin-transform-typescript": "^7.9.4",
"@babel/preset-env": "^7.9.5",
"@babel/preset-typescript": "^7.9.0",
"@types/jasmine": "^3.5.10",
"@types/mithril": "^2.0.3",
"@types/underscore": "^1.10.22",
"babel-loader": "^8.0.6",
"jasmine-core": "^2.4.1",
"jasmine-expect": "^2.0.0-beta1",
"karma": "^5.2.3",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^0.3.6",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^3.0.5",
"puppeteer": "^1.14.0",
"uglifyjs-webpack-plugin": "^2.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
},
"scripts": {
"start": "NODE_ENV=development ./node_modules/.bin/webpack --watch",
"build:prod": "NODE_ENV=production ./node_modules/.bin/webpack --mode production",
"postbuild:prod": "cp ./dist/mithril-postgrest.min.js ./mithril-postgrest.umd.js",
"test": "NODE_ENV=development ./node_modules/karma/bin/karma start"
},
"dependencies": {
"mithril": "^2.0.4",
"underscore": "^1.11.0"
}
}