Commits on Source 6
-
Bartłomiej Górnicki authored
-
Bartłomiej Górnicki authored
-
Bartłomiej Górnicki authored
-
Bartłomiej Górnicki authored
chore: dependency bump See merge request !1
-
-
Bartłomiej Górnicki authored
fix: update version with newest dependencies See merge request !2
This diff is collapsed.
... | ... | @@ -15,55 +15,54 @@ |
"build:cleanbefore": "rm -rf dist", | ||
"build:lint": "tslint -c tslint.json -p tsconfig.lint.json", | ||
"build:node": "tsc", | ||
"build:browser": "rm -rf dist/browser/ && NODE_ENV=production webpack -p --config webpack.config.js", | ||
"build:browser": "rm -rf dist/browser/ && NODE_ENV=production webpack --mode=production --config webpack.config.js", | ||
"build": "npm run build:cleanbefore && npm run build:node && npm run build:lint && npm run build:browser", | ||
"prepare": "NODE_ENV=production npm run build", | ||
"test": "find src -name '*.spec.test.ts' | TS_NODE_FILES=true TS_NODE_CACHE=false TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' xargs mocha -r ts-node/register --require source-map-support/register", | ||
"verify:browser": " testcafe --app-init-timeout 4000 --selector-timeout 2000 --assertion-timeout 2000 chrome browser-test/browser-test.js", | ||
"verify:browser": "testcafe --selector-timeout 2000 --assertion-timeout 2000 chrome browser-test/browser-test.js", | ||
"verify:puppeteer": "testcafe --selector-timeout 2000 --assertion-timeout 2000 puppeteer browser-test/browser-test.js", | ||
"lint-fix": "tslint --fix -c tslint.json -p tsconfig.lint.json", | ||
"semantic-release": "semantic-release" | ||
}, | ||
"dependencies": { | ||
"ow": "^0.13.2", | ||
"remarkable": "^1.7.1", | ||
"sanitize-html": "^1.20.1", | ||
"typescript-chained-error": "^1.3.2", | ||
"universe-log": "^2.1.0", | ||
"xmldom": "^0.1.27" | ||
"@xmldom/xmldom": "0.8.1", | ||
"ow": "0.28.1", | ||
"remarkable": "2.0.1", | ||
"sanitize-html": "2.7.0", | ||
"typescript-chained-error": "1.6.0", | ||
"universe-log": "5.2.0" | ||
}, | ||
"devDependencies": { | ||
"@commitlint/cli": "^8.1.0", | ||
"@commitlint/config-conventional": "^8.1.0", | ||
"@types/bluebird": "^3.5.27", | ||
"@types/chai": "^4.2.0", | ||
"@types/chai-as-promised": "^7.1.2", | ||
"@types/jsdom": "^12.2.4", | ||
"@types/lodash": "^4.14.136", | ||
"@types/mocha": "^5.2.7", | ||
"@types/node": "^12.7.1", | ||
"@types/remarkable": "1.7.3", | ||
"@types/sanitize-html": "^1.20.1", | ||
"@types/sinon": "^7.0.13", | ||
"@types/uuid": "^3.4.5", | ||
"@types/xmldom": "^0.1.29", | ||
"chai": "^4.2.0", | ||
"chai-as-promised": "^7.1.1", | ||
"@commitlint/cli": "16.2.3", | ||
"@commitlint/config-conventional": "16.2.1", | ||
"@semantic-release/gitlab": "7.0.4", | ||
"@types/chai": "4.3.0", | ||
"@types/chai-as-promised": "7.1.5", | ||
"@types/jsdom": "16.2.14", | ||
"@types/lodash": "4.14.180", | ||
"@types/mocha": "9.1.0", | ||
"@types/node": "17.0.21", | ||
"@types/sanitize-html": "2.6.2", | ||
"@types/sinon": "10.0.11", | ||
"@types/uuid": "8.3.4", | ||
"chai": "4.3.6", | ||
"chai-as-promised": "7.1.1", | ||
"husky": "^3.0.3", | ||
"jsdom": "^15.1.1", | ||
"lodash": "^4.17.15", | ||
"mocha": "^6.2.0", | ||
"semantic-release": "18.0.0", | ||
"@semantic-release/gitlab": "7.0.3", | ||
"sinon": "^7.4.1", | ||
"testcafe": "^1.4.3", | ||
"ts-node": "^8.3.0", | ||
"tslint": "^5.18.0", | ||
"typescript": "^3.5.3", | ||
"uuid": "^3.3.2", | ||
"webpack": "^4.39.1", | ||
"webpack-cli": "^3.3.6", | ||
"webpack-visualizer-plugin": "^0.1.11", | ||
"wise-tslint-configuration": "^0.2.0" | ||
"jsdom": "19.0.0", | ||
"lodash": "4.17.21", | ||
"mocha": "9.2.2", | ||
"semantic-release": "19.0.2", | ||
"sinon": "13.0.1", | ||
"testcafe": "1.18.4", | ||
"testcafe-browser-provider-puppeteer": "1.5.2", | ||
"ts-node": "10.7.0", | ||
"tslint": "6.1.3", | ||
"typescript": "4.6.2", | ||
"uuid": "8.3.2", | ||
"webpack": "5.70.0", | ||
"webpack-cli": "4.9.2", | ||
"webpack-visualizer-plugin2": "1.0.0", | ||
"wise-tslint-configuration": "0.2.0" | ||
}, | ||
"commitlint": { | ||
"extends": [ | ||
... | ... |