This commit is contained in:
Jaco
2021-10-25 13:28:22 +02:00
committed by GitHub
parent 0b5de72986
commit 0a5b9b7ee0
4 changed files with 642 additions and 637 deletions
+23 -13
View File
@@ -1,36 +1,46 @@
{ {
"repository": "https://github.com/polkadot-js/phishing",
"author": "Jaco Greeff <jacogr@gmail.com>", "author": "Jaco Greeff <jacogr@gmail.com>",
"bugs": "https://github.com/polkadot-js/phishing/issues",
"engines": {},
"homepage": "https://github.com/polkadot-js/phishing#readme",
"license": "Apache-2", "license": "Apache-2",
"packageManager": "yarn@3.0.1",
"private": true, "private": true,
"repository": {
"type": "git",
"url": "https://github.com/polkadot-js/phishing.git"
},
"sideEffects": false,
"version": "0.6.381",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"
], ],
"resolutions": { "bin": {},
"typescript": "^4.4.4"
},
"scripts": { "scripts": {
"build": "polkadot-dev-build-ts", "build": "polkadot-dev-build-ts",
"build:extra": "node scripts/sortAll.mjs", "build:extra": "node scripts/sortAll.mjs",
"build:release": "polkadot-ci-ghact-build --skip-beta", "build:release": "polkadot-ci-ghact-build --skip-beta",
"build:release:ipfs": "node scripts/ipfsUpload.mjs", "build:release:ipfs": "node scripts/ipfsUpload.mjs",
"build:rollup": "polkadot-exec-rollup --config", "build:rollup": "polkadot-exec-rollup --config",
"lint": "polkadot-dev-run-lint",
"clean": "polkadot-dev-clean-build", "clean": "polkadot-dev-clean-build",
"lint": "polkadot-dev-run-lint",
"phishing:addrcheck": "polkadot-dev-run-test --runInBand --detectOpenHandles packages/phishing/src/addrcheck", "phishing:addrcheck": "polkadot-dev-run-test --runInBand --detectOpenHandles packages/phishing/src/addrcheck",
"phishing:crosscheck": "polkadot-dev-run-test --runInBand --detectOpenHandles packages/phishing/src/crosscheck", "phishing:crosscheck": "polkadot-dev-run-test --runInBand --detectOpenHandles packages/phishing/src/crosscheck",
"postinstall": "polkadot-dev-yarn-only", "postinstall": "polkadot-dev-yarn-only",
"test": "polkadot-dev-run-test --coverage --runInBand --detectOpenHandles --testPathIgnorePatterns addrcheck --testPathIgnorePatterns crosscheck" "test": "polkadot-dev-run-test --coverage --runInBand --detectOpenHandles --testPathIgnorePatterns addrcheck --testPathIgnorePatterns crosscheck"
}, },
"devDependencies": {
"@babel/core": "^7.15.8",
"@polkadot/dev": "^0.62.71",
"@types/jest": "^27.0.2"
},
"version": "0.6.381",
"dependencies": { "dependencies": {
"@pinata/sdk": "^1.1.23", "@pinata/sdk": "^1.1.23",
"dnslink-cloudflare": "^3.0.0" "dnslink-cloudflare": "^3.0.0"
}, },
"packageManager": "yarn@3.0.1" "devDependencies": {
} "@babel/core": "^7.15.8",
"@polkadot/dev": "^0.63.8",
"@types/jest": "^27.0.2"
},
"optionalDependencies": {},
"peerDependencies": {},
"resolutions": {
"typescript": "^4.4.4"
}
}
+24 -17
View File
@@ -1,29 +1,36 @@
{ {
"name": "@polkadot/phishing",
"version": "0.6.381",
"license": "Apache-2.0",
"type": "module",
"description": "Simple phishing scripts from a central source",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>", "author": "Jaco Greeff <jacogr@gmail.com>",
"maintainers": [],
"contributors": [],
"bugs": "https://github.com/polkadot-js/phishing/issues", "bugs": "https://github.com/polkadot-js/phishing/issues",
"homepage": "https://github.com/polkadot-js/phishing#readme", "contributors": [],
"description": "Simple phishing scripts from a central source",
"engines": {},
"homepage": "https://github.com/polkadot-js/phishing/tree/master/packages/phishing#readme",
"license": "Apache-2.0",
"maintainers": [],
"name": "@polkadot/phishing",
"private": false,
"repository": { "repository": {
"directory": "packages/phishing",
"type": "git", "type": "git",
"url": "https://github.com/polkadot-js/phishing.git", "url": "https://github.com/polkadot-js/phishing.git"
"directory": "packages/phishing"
}, },
"sideEffects": false, "sideEffects": false,
"type": "module",
"version": "0.6.381",
"main": "index.js",
"bin": {},
"scripts": {},
"dependencies": { "dependencies": {
"@babel/runtime": "^7.15.4", "@babel/runtime": "^7.15.4",
"@polkadot/util": "^7.5.1", "@polkadot/util": "^7.6.1",
"@polkadot/util-crypto": "^7.5.1", "@polkadot/util-crypto": "^7.6.1",
"@polkadot/x-fetch": "^7.5.1" "@polkadot/x-fetch": "^7.6.1"
}, },
"devDependencies": { "devDependencies": {
"@types/js-yaml": "^4.0.3", "@types/js-yaml": "^4.0.4",
"js-yaml": "^4.1.0" "js-yaml": "^4.1.0"
} },
} "optionalDependencies": {},
"peerDependencies": {},
"resolutions": {}
}
+24 -9
View File
@@ -1,12 +1,27 @@
{ {
"name": "@polkadot/unused",
"version": "0.6.381",
"description": "Dummy",
"main": "index.js",
"author": "Jaco Greeff <jacogr@gmail.com>", "author": "Jaco Greeff <jacogr@gmail.com>",
"maintainers": [],
"contributors": [],
"license": "Apache-2.0",
"bugs": "https://github.com/polkadot-js/phishing/issues", "bugs": "https://github.com/polkadot-js/phishing/issues",
"homepage": "https://github.com/polkadot-js/phishing" "contributors": [],
} "description": "Dummy",
"engines": {},
"homepage": "https://github.com/polkadot-js/phishing/tree/master/packages/unused#readme",
"license": "Apache-2.0",
"maintainers": [],
"name": "@polkadot/phishing-unused",
"private": true,
"repository": {
"directory": "packages/unused",
"type": "git",
"url": "https://github.com/polkadot-js/phishing.git"
},
"sideEffects": false,
"version": "0.6.381",
"main": "index.js",
"bin": {},
"scripts": {},
"dependencies": {},
"devDependencies": {},
"optionalDependencies": {},
"peerDependencies": {},
"resolutions": {}
}
+571 -598
View File
File diff suppressed because it is too large Load Diff