2016-11-28 11:42:58 +01:00
|
|
|
{
|
|
|
|
"name": "cyberchef",
|
2020-03-26 13:02:09 +01:00
|
|
|
"version": "9.19.1",
|
2017-04-27 12:23:01 +02:00
|
|
|
"description": "The Cyber Swiss Army Knife for encryption, encoding, compression and data analysis.",
|
2016-11-28 11:42:58 +01:00
|
|
|
"author": "n1474335 <n1474335@gmail.com>",
|
2016-11-28 12:13:01 +01:00
|
|
|
"homepage": "https://gchq.github.io/CyberChef",
|
2016-11-28 11:42:58 +01:00
|
|
|
"copyright": "Crown copyright 2016",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"keywords": [
|
|
|
|
"cipher",
|
|
|
|
"cypher",
|
|
|
|
"encode",
|
|
|
|
"decode",
|
|
|
|
"encrypt",
|
|
|
|
"decrypt",
|
|
|
|
"base64",
|
|
|
|
"xor",
|
|
|
|
"charset",
|
|
|
|
"hex",
|
|
|
|
"encoding",
|
|
|
|
"format",
|
2017-04-27 12:43:11 +02:00
|
|
|
"cybersecurity",
|
|
|
|
"data manipulation",
|
|
|
|
"data analysis"
|
2016-11-28 11:42:58 +01:00
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-12-20 19:57:53 +01:00
|
|
|
"url": "https://github.com/gchq/CyberChef/"
|
2016-11-28 11:42:58 +01:00
|
|
|
},
|
2019-07-19 14:14:32 +02:00
|
|
|
"main": "src/node/cjs.js",
|
2018-08-10 18:44:40 +02:00
|
|
|
"module": "src/node/index.mjs",
|
2017-04-27 12:43:11 +02:00
|
|
|
"bugs": "https://github.com/gchq/CyberChef/issues",
|
2019-06-27 18:29:27 +02:00
|
|
|
"browserslist": [
|
2019-08-28 18:14:12 +02:00
|
|
|
"Chrome >= 50",
|
|
|
|
"Firefox >= 38",
|
|
|
|
"node >= 10"
|
2019-06-27 18:29:27 +02:00
|
|
|
],
|
2016-11-28 11:42:58 +01:00
|
|
|
"devDependencies": {
|
2020-03-18 17:12:30 +01:00
|
|
|
"@babel/core": "^7.8.7",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.8.3",
|
|
|
|
"@babel/preset-env": "^7.8.7",
|
|
|
|
"autoprefixer": "^9.7.4",
|
|
|
|
"babel-eslint": "^10.1.0",
|
2019-06-27 18:06:07 +02:00
|
|
|
"babel-loader": "^8.0.6",
|
2019-08-30 19:49:05 +02:00
|
|
|
"babel-plugin-dynamic-import-node": "^2.3.0",
|
2020-02-13 13:54:05 +01:00
|
|
|
"chromedriver": "^80.0.1",
|
2020-03-13 15:59:48 +01:00
|
|
|
"cli-progress": "^3.6.0",
|
2019-11-21 13:15:07 +01:00
|
|
|
"colors": "^1.4.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"copy-webpack-plugin": "^5.1.1",
|
|
|
|
"css-loader": "^3.4.2",
|
|
|
|
"eslint": "^6.8.0",
|
2018-03-01 20:45:34 +01:00
|
|
|
"exports-loader": "^0.7.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"file-loader": "^6.0.0",
|
|
|
|
"grunt": "^1.1.0",
|
2018-03-01 20:45:34 +01:00
|
|
|
"grunt-accessibility": "~6.0.0",
|
2016-11-28 11:42:58 +01:00
|
|
|
"grunt-chmod": "~1.1.1",
|
2019-06-27 18:29:27 +02:00
|
|
|
"grunt-concurrent": "^3.0.0",
|
2018-10-10 17:49:07 +02:00
|
|
|
"grunt-contrib-clean": "~2.0.0",
|
2019-11-21 13:15:07 +01:00
|
|
|
"grunt-contrib-connect": "^2.1.0",
|
2016-12-20 19:57:53 +01:00
|
|
|
"grunt-contrib-copy": "~1.0.0",
|
2018-08-04 20:32:30 +02:00
|
|
|
"grunt-contrib-watch": "^1.1.0",
|
2019-07-05 13:22:52 +02:00
|
|
|
"grunt-eslint": "^22.0.0",
|
2017-08-04 15:35:52 +02:00
|
|
|
"grunt-exec": "~3.0.0",
|
2018-10-10 17:49:07 +02:00
|
|
|
"grunt-webpack": "^3.1.3",
|
2019-04-12 19:54:31 +02:00
|
|
|
"grunt-zip": "^0.18.2",
|
2018-04-30 19:52:43 +02:00
|
|
|
"html-webpack-plugin": "^3.2.0",
|
2018-03-01 20:45:34 +01:00
|
|
|
"imports-loader": "^0.8.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"mini-css-extract-plugin": "^0.9.0",
|
2020-02-13 13:54:05 +01:00
|
|
|
"nightwatch": "^1.3.4",
|
2020-03-18 17:12:30 +01:00
|
|
|
"node-sass": "^4.13.1",
|
2019-12-09 14:51:48 +01:00
|
|
|
"postcss-css-variables": "^0.14.0",
|
2018-11-07 13:29:23 +01:00
|
|
|
"postcss-import": "^12.0.1",
|
2018-10-10 17:49:07 +02:00
|
|
|
"postcss-loader": "^3.0.0",
|
2018-05-29 16:18:39 +02:00
|
|
|
"prompt": "^1.0.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"sass-loader": "^8.0.2",
|
|
|
|
"sitemap": "^6.1.0",
|
|
|
|
"style-loader": "^1.1.3",
|
|
|
|
"svg-url-loader": "^5.0.0",
|
|
|
|
"url-loader": "^4.0.0",
|
|
|
|
"webpack": "^4.42.0",
|
|
|
|
"webpack-bundle-analyzer": "^3.6.1",
|
|
|
|
"webpack-dev-server": "^3.10.3",
|
2018-04-30 19:52:43 +02:00
|
|
|
"webpack-node-externals": "^1.7.2",
|
2018-08-04 20:32:30 +02:00
|
|
|
"worker-loader": "^2.0.0"
|
2017-03-06 13:45:51 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2020-03-18 17:12:30 +01:00
|
|
|
"@babel/polyfill": "^7.8.7",
|
|
|
|
"@babel/runtime": "^7.8.7",
|
2018-06-09 11:43:36 +02:00
|
|
|
"arrive": "^2.4.1",
|
2020-03-18 17:12:30 +01:00
|
|
|
"avsc": "^5.4.19",
|
2018-04-27 10:59:10 +02:00
|
|
|
"babel-plugin-transform-builtin-extend": "1.1.2",
|
2018-03-26 23:25:36 +02:00
|
|
|
"bcryptjs": "^2.4.3",
|
2019-06-27 18:29:27 +02:00
|
|
|
"bignumber.js": "^9.0.0",
|
2019-03-26 20:09:57 +01:00
|
|
|
"blakejs": "^1.1.0",
|
2019-12-09 14:51:48 +01:00
|
|
|
"bootstrap": "4.4.1",
|
|
|
|
"bootstrap-colorpicker": "^3.2.0",
|
2019-06-27 17:58:26 +02:00
|
|
|
"bootstrap-material-design": "^4.1.2",
|
2020-03-18 17:12:30 +01:00
|
|
|
"bson": "^4.0.3",
|
2018-02-10 16:10:53 +01:00
|
|
|
"chi-squared": "^1.1.0",
|
2019-11-01 15:56:18 +01:00
|
|
|
"codepage": "^1.14.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"core-js": "^3.6.4",
|
2019-08-30 19:49:05 +02:00
|
|
|
"crypto-api": "^0.8.5",
|
2020-03-18 17:12:30 +01:00
|
|
|
"crypto-js": "^4.0.0",
|
2018-03-04 19:41:41 +01:00
|
|
|
"ctph.js": "0.0.5",
|
2020-03-18 17:12:30 +01:00
|
|
|
"d3": "^5.15.0",
|
2017-05-30 20:50:56 +02:00
|
|
|
"d3-hexbin": "^0.2.2",
|
2020-03-18 17:12:30 +01:00
|
|
|
"diff": "^4.0.2",
|
|
|
|
"es6-promisify": "^6.1.0",
|
|
|
|
"escodegen": "^1.14.1",
|
2019-07-19 14:14:32 +02:00
|
|
|
"esm": "^3.2.25",
|
2017-03-06 13:45:51 +01:00
|
|
|
"esmangle": "^1.0.1",
|
2018-08-04 20:32:30 +02:00
|
|
|
"esprima": "^4.0.1",
|
2017-07-24 15:49:16 +02:00
|
|
|
"exif-parser": "^0.1.12",
|
2019-06-27 18:06:07 +02:00
|
|
|
"file-saver": "^2.0.2",
|
2019-01-15 11:13:11 +01:00
|
|
|
"geodesy": "^1.1.3",
|
2020-03-18 17:12:30 +01:00
|
|
|
"highlight.js": "^9.18.1",
|
|
|
|
"jimp": "^0.9.5",
|
2019-05-09 17:20:42 +02:00
|
|
|
"jquery": "3.4.1",
|
2017-09-12 17:50:46 +02:00
|
|
|
"js-crc": "^0.2.0",
|
2018-10-10 17:49:07 +02:00
|
|
|
"js-sha3": "^0.8.0",
|
2019-01-01 20:19:07 +01:00
|
|
|
"jsesc": "^2.5.2",
|
2019-06-27 18:06:07 +02:00
|
|
|
"jsonpath": "^1.0.2",
|
2019-03-30 15:56:43 +01:00
|
|
|
"jsonwebtoken": "^8.5.1",
|
|
|
|
"jsqr": "^1.2.0",
|
2018-04-30 19:52:43 +02:00
|
|
|
"jsrsasign": "8.0.12",
|
2020-03-18 17:12:30 +01:00
|
|
|
"kbpgp": "2.1.13",
|
2019-04-07 19:59:03 +02:00
|
|
|
"libbzip2-wasm": "0.0.4",
|
2019-10-26 17:14:25 +02:00
|
|
|
"libyara-wasm": "^1.0.1",
|
2019-08-02 12:10:15 +02:00
|
|
|
"lodash": "^4.17.15",
|
2020-03-18 17:12:30 +01:00
|
|
|
"loglevel": "^1.6.7",
|
2017-12-29 18:32:23 +01:00
|
|
|
"loglevel-message-prefix": "^3.0.0",
|
2019-11-21 13:15:07 +01:00
|
|
|
"markdown-it": "^10.0.0",
|
2019-03-30 15:56:43 +01:00
|
|
|
"moment": "^2.24.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"moment-timezone": "^0.5.28",
|
2019-01-01 20:19:07 +01:00
|
|
|
"ngeohash": "^0.6.3",
|
2019-09-26 22:32:08 +02:00
|
|
|
"node-forge": "^0.9.1",
|
2017-09-12 16:20:05 +02:00
|
|
|
"node-md6": "^0.1.0",
|
2019-11-21 13:15:07 +01:00
|
|
|
"nodom": "^2.4.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"notepack.io": "^2.3.0",
|
2018-03-29 00:56:33 +02:00
|
|
|
"nwmatcher": "^1.4.4",
|
2017-09-05 19:53:54 +02:00
|
|
|
"otp": "^0.1.3",
|
2020-03-18 17:12:30 +01:00
|
|
|
"popper.js": "^1.16.1",
|
2018-12-19 14:27:18 +01:00
|
|
|
"qr-image": "^3.2.0",
|
2019-06-27 18:29:27 +02:00
|
|
|
"scryptsy": "^2.1.0",
|
2018-06-20 01:18:59 +02:00
|
|
|
"snackbarjs": "^1.1.0",
|
2020-03-18 17:12:30 +01:00
|
|
|
"sortablejs": "^1.10.2",
|
2019-06-27 18:06:07 +02:00
|
|
|
"split.js": "^1.5.11",
|
2018-03-04 19:41:41 +01:00
|
|
|
"ssdeep.js": "0.0.2",
|
2020-03-18 17:12:30 +01:00
|
|
|
"tesseract.js": "^2.0.2",
|
|
|
|
"ua-parser-js": "^0.7.21",
|
2019-11-25 22:53:31 +01:00
|
|
|
"unorm": "^1.6.0",
|
2017-12-26 00:11:52 +01:00
|
|
|
"utf8": "^3.0.0",
|
2017-08-04 15:35:52 +02:00
|
|
|
"vkbeautify": "^0.99.3",
|
2020-03-18 17:12:30 +01:00
|
|
|
"xmldom": "^0.3.0",
|
2017-12-19 17:53:57 +01:00
|
|
|
"xpath": "0.0.27",
|
2020-03-18 17:12:30 +01:00
|
|
|
"xregexp": "^4.3.0",
|
2017-07-24 15:49:16 +02:00
|
|
|
"zlibjs": "^0.3.1"
|
2017-03-30 19:47:53 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2017-07-04 00:15:57 +02:00
|
|
|
"start": "grunt dev",
|
2017-03-30 20:58:58 +02:00
|
|
|
"build": "grunt prod",
|
2019-07-19 14:14:32 +02:00
|
|
|
"repl": "node src/node/repl.js",
|
2020-03-13 15:59:48 +01:00
|
|
|
"test": "grunt configTests && node --experimental-modules --no-warnings --no-deprecation tests/node/index.mjs && node --experimental-modules --no-warnings --no-deprecation tests/operations/index.mjs",
|
2019-08-02 12:10:15 +02:00
|
|
|
"test-node-consumer": "grunt testnodeconsumer",
|
2018-12-29 03:58:05 +01:00
|
|
|
"testui": "grunt testui",
|
2019-08-30 19:49:05 +02:00
|
|
|
"testuidev": "npx nightwatch --env=dev",
|
2018-04-13 13:14:40 +02:00
|
|
|
"lint": "grunt lint",
|
2019-07-05 10:44:01 +02:00
|
|
|
"newop": "node --experimental-modules src/core/config/scripts/newOperation.mjs"
|
2016-11-28 11:42:58 +01:00
|
|
|
}
|
|
|
|
}
|