2015-06-09 18:40:42 +02:00
|
|
|
{
|
|
|
|
"name": "matrix-react-sdk",
|
2018-12-10 14:43:59 +01:00
|
|
|
"version": "0.14.7",
|
2015-06-09 18:40:42 +02:00
|
|
|
"description": "SDK for matrix.org using React",
|
|
|
|
"author": "matrix.org",
|
2015-06-09 19:52:26 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/matrix-org/matrix-react-sdk"
|
|
|
|
},
|
2015-07-03 16:56:04 +02:00
|
|
|
"license": "Apache-2.0",
|
2015-09-09 17:57:55 +02:00
|
|
|
"main": "lib/index.js",
|
2016-11-01 16:15:31 +01:00
|
|
|
"files": [
|
2018-12-06 12:44:00 +01:00
|
|
|
".babelrc",
|
2017-01-23 17:19:29 +01:00
|
|
|
".eslintrc.js",
|
2016-11-01 16:15:31 +01:00
|
|
|
"CHANGELOG.md",
|
|
|
|
"CONTRIBUTING.rst",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"code_style.md",
|
|
|
|
"git-revision.txt",
|
|
|
|
"header",
|
|
|
|
"jenkins.sh",
|
|
|
|
"karma.conf.js",
|
|
|
|
"lib",
|
|
|
|
"package.json",
|
|
|
|
"release.sh",
|
|
|
|
"scripts",
|
|
|
|
"src",
|
2018-04-25 17:07:16 +02:00
|
|
|
"test",
|
|
|
|
"res"
|
2016-11-01 16:15:31 +01:00
|
|
|
],
|
2015-09-11 16:42:11 +02:00
|
|
|
"bin": {
|
2017-10-19 11:51:54 +02:00
|
|
|
"reskindex": "scripts/reskindex.js",
|
2017-10-19 13:11:21 +02:00
|
|
|
"matrix-gen-i18n": "scripts/gen-i18n.js",
|
|
|
|
"matrix-prune-i18n": "scripts/prune-i18n.js"
|
2015-09-11 16:42:11 +02:00
|
|
|
},
|
2015-06-09 18:40:42 +02:00
|
|
|
"scripts": {
|
2017-05-09 18:13:27 +02:00
|
|
|
"reskindex": "node scripts/reskindex.js -h header",
|
|
|
|
"reskindex:watch": "node scripts/reskindex.js -h header -w",
|
2017-10-19 11:51:54 +02:00
|
|
|
"i18n": "matrix-gen-i18n",
|
2017-10-19 13:11:21 +02:00
|
|
|
"prunei18n": "matrix-prune-i18n",
|
2018-09-25 19:07:46 +02:00
|
|
|
"build": "npm run reskindex && npm run start:init",
|
|
|
|
"build:watch": "babel src -w --skip-initial-build -d lib --source-maps --copy-files",
|
2017-06-28 12:35:14 +02:00
|
|
|
"emoji-data-strip": "node scripts/emoji-data-strip.js",
|
2018-09-25 19:07:46 +02:00
|
|
|
"start": "npm run start:init && npm run start:all",
|
|
|
|
"start:all": "concurrently --kill-others-on-fail --prefix \"{time} [{name}]\" -n build,reskindex \"npm run build:watch\" \"npm run reskindex:watch\"",
|
|
|
|
"start:init": "babel src -d lib --source-maps --copy-files",
|
2016-07-01 20:30:53 +02:00
|
|
|
"lint": "eslint src/",
|
2016-07-01 19:38:51 +02:00
|
|
|
"lintall": "eslint src/ test/",
|
2019-01-10 11:23:49 +01:00
|
|
|
"lintwithexclusions": "eslint --max-warnings 18 --ignore-path .eslintignore.errorfiles src test",
|
2015-09-09 17:57:55 +02:00
|
|
|
"clean": "rimraf lib",
|
2017-09-21 18:39:34 +02:00
|
|
|
"prepublish": "npm run clean && npm run build && git rev-parse HEAD > git-revision.txt",
|
2017-07-11 23:54:18 +02:00
|
|
|
"test": "karma start --single-run=true --browsers ChromeHeadless",
|
|
|
|
"test-multi": "karma start"
|
2015-06-09 18:40:42 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2018-11-21 17:56:44 +01:00
|
|
|
"babel-plugin-syntax-dynamic-import": "^6.18.0",
|
2018-10-09 17:28:24 +02:00
|
|
|
"babel-runtime": "^6.26.0",
|
2017-07-12 14:58:14 +02:00
|
|
|
"bluebird": "^3.5.0",
|
2016-11-15 12:22:39 +01:00
|
|
|
"blueimp-canvas-to-blob": "^3.5.0",
|
2016-12-01 14:12:22 +01:00
|
|
|
"browser-encrypt-attachment": "^0.3.0",
|
2016-05-16 16:35:39 +02:00
|
|
|
"browser-request": "^0.3.3",
|
2015-06-12 18:34:17 +02:00
|
|
|
"classnames": "^2.1.2",
|
2018-01-07 21:32:41 +01:00
|
|
|
"commonmark": "^0.28.1",
|
2017-05-25 12:24:17 +02:00
|
|
|
"counterpart": "^0.18.0",
|
2017-07-11 14:48:15 +02:00
|
|
|
"emojione": "2.2.7",
|
2017-01-20 16:12:50 +01:00
|
|
|
"file-saver": "^1.3.3",
|
2017-04-30 14:00:47 +02:00
|
|
|
"filesize": "3.5.6",
|
2017-06-09 22:42:34 +02:00
|
|
|
"flux": "2.1.1",
|
2017-12-05 08:50:40 +01:00
|
|
|
"focus-trap-react": "^3.0.5",
|
2016-06-01 13:24:21 +02:00
|
|
|
"fuse.js": "^2.2.0",
|
2018-10-16 11:57:32 +02:00
|
|
|
"gemini-scrollbar": "github:matrix-org/gemini-scrollbar#b302279",
|
2018-04-18 11:53:01 +02:00
|
|
|
"gfm.css": "^1.1.1",
|
2015-09-17 13:10:01 +02:00
|
|
|
"glob": "^5.0.14",
|
2018-10-16 11:57:32 +02:00
|
|
|
"highlight.js": "^9.13.0",
|
2018-12-06 02:00:09 +01:00
|
|
|
"is-ip": "^2.0.0",
|
2016-11-11 18:22:44 +01:00
|
|
|
"isomorphic-fetch": "^2.2.1",
|
2018-06-23 20:28:42 +02:00
|
|
|
"linkifyjs": "^2.1.6",
|
2016-07-03 18:45:13 +02:00
|
|
|
"lodash": "^4.13.1",
|
2018-05-09 12:43:02 +02:00
|
|
|
"lolex": "2.3.2",
|
2018-12-10 14:39:35 +01:00
|
|
|
"matrix-js-sdk": "0.14.2",
|
2015-09-17 13:10:01 +02:00
|
|
|
"optimist": "^0.6.1",
|
2018-04-18 11:53:01 +02:00
|
|
|
"pako": "^1.0.5",
|
2017-05-04 17:22:06 +02:00
|
|
|
"prop-types": "^15.5.8",
|
2018-06-12 12:11:43 +02:00
|
|
|
"qrcode-react": "^0.1.16",
|
2017-11-10 12:42:56 +01:00
|
|
|
"querystring": "^0.2.0",
|
2018-04-18 11:53:01 +02:00
|
|
|
"react": "^15.6.0",
|
2016-11-16 18:58:43 +01:00
|
|
|
"react-addons-css-transition-group": "15.3.2",
|
2018-04-18 11:53:01 +02:00
|
|
|
"react-beautiful-dnd": "^4.0.1",
|
|
|
|
"react-dom": "^15.6.0",
|
2018-10-16 11:57:32 +02:00
|
|
|
"react-gemini-scrollbar": "github:matrix-org/react-gemini-scrollbar#5e97aef",
|
2018-07-12 19:43:49 +02:00
|
|
|
"resize-observer-polyfill": "^1.5.0",
|
2018-09-17 19:20:12 +02:00
|
|
|
"sanitize-html": "^1.18.4",
|
2018-10-09 11:55:55 +02:00
|
|
|
"slate": "^0.41.2",
|
2018-04-23 02:13:18 +02:00
|
|
|
"slate-html-serializer": "^0.6.1",
|
2018-10-16 11:57:32 +02:00
|
|
|
"slate-md-serializer": "github:matrix-org/slate-md-serializer#f7c4ad3",
|
2018-10-09 11:55:55 +02:00
|
|
|
"slate-react": "^0.18.10",
|
2017-01-18 12:39:44 +01:00
|
|
|
"text-encoding-utf-8": "^1.0.1",
|
2017-07-06 10:28:48 +02:00
|
|
|
"url": "^0.11.0",
|
2018-10-16 11:57:32 +02:00
|
|
|
"velocity-vector": "github:vector-im/velocity#059e3b2",
|
2018-11-23 16:50:23 +01:00
|
|
|
"whatwg-fetch": "^1.1.1",
|
|
|
|
"zxcvbn": "^4.4.2"
|
2015-06-09 18:40:42 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-10-09 17:28:24 +02:00
|
|
|
"babel-cli": "^6.26.0",
|
|
|
|
"babel-core": "^6.26.3",
|
2018-10-27 05:48:11 +02:00
|
|
|
"babel-eslint": "^10.0.1",
|
2018-10-09 17:28:24 +02:00
|
|
|
"babel-loader": "^7.1.5",
|
2016-10-17 16:36:27 +02:00
|
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
2017-07-13 18:10:08 +02:00
|
|
|
"babel-plugin-transform-async-to-bluebird": "^1.1.1",
|
2018-10-09 17:28:24 +02:00
|
|
|
"babel-plugin-transform-class-properties": "^6.24.1",
|
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
|
|
|
"babel-plugin-transform-runtime": "^6.23.0",
|
|
|
|
"babel-polyfill": "^6.26.0",
|
|
|
|
"babel-preset-es2015": "^6.24.1",
|
|
|
|
"babel-preset-es2016": "^6.24.1",
|
|
|
|
"babel-preset-es2017": "^6.24.1",
|
|
|
|
"babel-preset-react": "^6.24.1",
|
2017-05-08 17:24:13 +02:00
|
|
|
"chokidar": "^1.6.1",
|
2018-09-25 19:07:46 +02:00
|
|
|
"concurrently": "^4.0.1",
|
2019-01-09 19:10:35 +01:00
|
|
|
"eslint": "^5.12.0",
|
2017-01-20 15:08:14 +01:00
|
|
|
"eslint-config-google": "^0.7.1",
|
2018-10-27 05:48:11 +02:00
|
|
|
"eslint-plugin-babel": "^5.2.1",
|
2017-01-20 15:08:14 +01:00
|
|
|
"eslint-plugin-flowtype": "^2.30.0",
|
2018-05-02 18:30:37 +02:00
|
|
|
"eslint-plugin-react": "^7.7.0",
|
2017-10-17 20:19:01 +02:00
|
|
|
"estree-walker": "^0.5.0",
|
2018-12-25 03:02:36 +01:00
|
|
|
"expect": "^23.6.0",
|
2017-10-17 20:19:01 +02:00
|
|
|
"flow-parser": "^0.57.3",
|
2018-12-25 03:55:10 +01:00
|
|
|
"jest-mock": "^23.2.0",
|
2018-09-26 12:54:30 +02:00
|
|
|
"karma": "^3.0.0",
|
2016-03-29 00:29:49 +02:00
|
|
|
"karma-chrome-launcher": "^0.2.3",
|
2018-10-09 17:28:24 +02:00
|
|
|
"karma-cli": "^1.0.1",
|
|
|
|
"karma-junit-reporter": "^0.4.2",
|
2017-07-27 15:47:22 +02:00
|
|
|
"karma-logcapture-reporter": "0.0.1",
|
2018-10-09 17:28:24 +02:00
|
|
|
"karma-mocha": "^1.3.0",
|
2016-03-29 00:29:49 +02:00
|
|
|
"karma-sourcemap-loader": "^0.3.7",
|
2017-07-27 15:47:22 +02:00
|
|
|
"karma-spec-reporter": "^0.0.31",
|
2018-10-09 17:28:24 +02:00
|
|
|
"karma-summary-reporter": "^1.5.1",
|
|
|
|
"karma-webpack": "^4.0.0-beta.0",
|
2018-04-27 15:28:24 +02:00
|
|
|
"matrix-mock-request": "^1.2.1",
|
2017-07-12 01:02:52 +02:00
|
|
|
"matrix-react-test-utils": "^0.1.1",
|
2018-04-12 18:16:18 +02:00
|
|
|
"mocha": "^5.0.5",
|
2016-11-17 11:15:10 +01:00
|
|
|
"react-addons-test-utils": "^15.4.0",
|
2015-11-30 18:33:04 +01:00
|
|
|
"require-json": "0.0.1",
|
|
|
|
"rimraf": "^2.4.3",
|
2018-05-21 11:44:00 +02:00
|
|
|
"sinon": "^5.0.7",
|
2018-04-09 14:53:02 +02:00
|
|
|
"source-map-loader": "^0.2.3",
|
2017-10-17 20:19:01 +02:00
|
|
|
"walk": "^2.3.9",
|
2018-10-09 17:28:24 +02:00
|
|
|
"webpack": "^4.20.2",
|
|
|
|
"webpack-cli": "^3.1.1"
|
2015-06-09 18:40:42 +02:00
|
|
|
}
|
|
|
|
}
|