Revela/package.json
David Reed 561a1ee190
run ESLint
Several bugs were found (and fixed):
src/client/index.js:71
the following if() was equivalent to if (false in obj)

src/client/dom/element.js:207
the following if() was equivalent to if (!element || false in element)

src/client/rewrite/html.js:179
an undefined iterate() was referenced
2022-11-23 12:37:00 -05:00

41 lines
1.3 KiB
JSON

{
"name": "@titaniumnetwork-dev/ultraviolet",
"version": "1.0.4-beta.3",
"description": "Highly sophisticated proxy used for evading internet censorship or accessing websites in a controlled sandbox using the power of service-workers and more!",
"main": "lib/index.cjs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/titaniumnetwork-dev/Ultraviolet.git"
},
"files": [
"dist",
"lib"
],
"type": "module",
"scripts": {
"build": "cross-env NODE_ENV=production webpack-cli",
"build:dev": "cross-env NODE_ENV=development webpack-cli",
"build:watch": "cross-env NODE_ENV=development webpack-cli --watch"
},
"dependencies": {
"@tomphttp/bare-client": "^1.1.2-beta",
"css-tree": "^2.0.4",
"esotope-hammerhead": "^0.6.1",
"events": "^3.3.0",
"idb": "^7.0.0",
"meriyah": "^4.2.0",
"mime-db": "^1.51.0",
"parse5": "^6.0.1",
"set-cookie-parser": "^2.4.8"
},
"devDependencies": {
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"prettier": "^2.7.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
}
}