2015-06-09 19:40:42 +03:00
|
|
|
{
|
|
|
|
"name": "matrix-react-sdk",
|
2016-06-03 14:17:46 +03:00
|
|
|
"version": "0.6.3",
|
2015-06-09 19:40:42 +03:00
|
|
|
"description": "SDK for matrix.org using React",
|
|
|
|
"author": "matrix.org",
|
2015-06-09 20:52:26 +03:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/matrix-org/matrix-react-sdk"
|
|
|
|
},
|
2015-07-03 17:56:04 +03:00
|
|
|
"license": "Apache-2.0",
|
2015-09-09 18:57:55 +03:00
|
|
|
"main": "lib/index.js",
|
2015-09-11 17:42:11 +03:00
|
|
|
"bin": {
|
|
|
|
"reskindex": "./reskindex.js"
|
|
|
|
},
|
2015-06-09 19:40:42 +03:00
|
|
|
"scripts": {
|
2016-07-27 15:28:23 +03:00
|
|
|
"reskindex": "./reskindex.js -h header",
|
2016-07-08 17:29:59 +03:00
|
|
|
"build": "babel src -d lib --source-maps --stage 1",
|
|
|
|
"start": "babel src -w -d lib --source-maps --stage 1",
|
2016-07-01 21:30:53 +03:00
|
|
|
"lint": "eslint src/",
|
2016-07-01 20:38:51 +03:00
|
|
|
"lintall": "eslint src/ test/",
|
2015-09-09 18:57:55 +03:00
|
|
|
"clean": "rimraf lib",
|
2016-04-19 15:26:20 +03:00
|
|
|
"prepublish": "npm run build && git rev-parse HEAD > git-revision.txt",
|
2016-06-23 16:38:08 +03:00
|
|
|
"test": "karma start $KARMAFLAGS --browsers PhantomJS",
|
|
|
|
"test-multi": "karma start $KARMAFLAGS --single-run=false"
|
2015-06-09 19:40:42 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2015-06-12 19:34:17 +03:00
|
|
|
"classnames": "^2.1.2",
|
2016-05-27 07:45:55 +03:00
|
|
|
"draft-js": "^0.7.0",
|
|
|
|
"draft-js-export-html": "^0.2.2",
|
2016-06-11 13:22:08 +03:00
|
|
|
"draft-js-export-markdown": "^0.2.0",
|
|
|
|
"draft-js-import-markdown": "^0.1.6",
|
2016-08-03 23:36:52 +03:00
|
|
|
"emojione": "2.2.3",
|
2015-12-21 15:55:13 +03:00
|
|
|
"favico.js": "^0.3.10",
|
2015-07-08 18:25:27 +03:00
|
|
|
"filesize": "^3.1.2",
|
2015-06-09 19:40:42 +03:00
|
|
|
"flux": "^2.0.3",
|
2016-06-01 14:24:21 +03:00
|
|
|
"fuse.js": "^2.2.0",
|
2015-09-17 14:10:01 +03:00
|
|
|
"glob": "^5.0.14",
|
2015-11-27 18:39:52 +03:00
|
|
|
"highlight.js": "^8.9.1",
|
2015-09-17 14:10:01 +03:00
|
|
|
"linkifyjs": "^2.0.0-beta.4",
|
2016-07-03 19:45:13 +03:00
|
|
|
"lodash": "^4.13.1",
|
2015-11-20 19:08:57 +03:00
|
|
|
"marked": "^0.3.5",
|
2016-06-08 23:33:38 +03:00
|
|
|
"matrix-js-sdk": "matrix-org/matrix-js-sdk#develop",
|
2015-09-17 14:10:01 +03:00
|
|
|
"optimist": "^0.6.1",
|
2015-07-08 16:34:26 +03:00
|
|
|
"q": "^1.4.1",
|
2016-07-22 12:43:50 +03:00
|
|
|
"react": "^15.2.1",
|
|
|
|
"react-addons-css-transition-group": "^15.2.1",
|
|
|
|
"react-dom": "^15.2.1",
|
2016-07-27 13:35:48 +03:00
|
|
|
"react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#5e97aef",
|
2015-11-27 18:39:52 +03:00
|
|
|
"sanitize-html": "^1.11.1",
|
2016-06-12 14:32:46 +03:00
|
|
|
"velocity-vector": "vector-im/velocity#059e3b2",
|
|
|
|
"whatwg-fetch": "^1.0.0"
|
2015-06-09 19:40:42 +03:00
|
|
|
},
|
2016-03-31 18:38:56 +03:00
|
|
|
"//babelversion": [
|
2016-04-19 15:20:26 +03:00
|
|
|
"brief experiments with babel6 seems to show that it generates source ",
|
|
|
|
"maps which confuse chrome and make setting breakpoints tricky. So ",
|
|
|
|
"let's stick with v5 for now."
|
2016-03-31 18:38:56 +03:00
|
|
|
],
|
2015-06-09 19:40:42 +03:00
|
|
|
"devDependencies": {
|
2015-09-10 17:28:30 +03:00
|
|
|
"babel": "^5.8.23",
|
2016-03-31 18:38:56 +03:00
|
|
|
"babel-core": "^5.8.38",
|
2016-07-01 20:38:51 +03:00
|
|
|
"babel-eslint": "^6.1.0",
|
2016-03-31 18:38:56 +03:00
|
|
|
"babel-loader": "^5.4.0",
|
2016-04-21 10:09:40 +03:00
|
|
|
"babel-polyfill": "^6.5.0",
|
2016-07-01 20:38:51 +03:00
|
|
|
"eslint": "^2.13.1",
|
|
|
|
"eslint-plugin-flowtype": "^2.3.0",
|
|
|
|
"eslint-plugin-react": "^5.2.2",
|
2016-03-29 01:29:49 +03:00
|
|
|
"expect": "^1.16.0",
|
2015-09-25 15:39:21 +03:00
|
|
|
"json-loader": "^0.5.3",
|
2016-03-29 01:29:49 +03:00
|
|
|
"karma": "^0.13.22",
|
|
|
|
"karma-chrome-launcher": "^0.2.3",
|
|
|
|
"karma-cli": "^0.1.2",
|
2016-03-29 01:35:36 +03:00
|
|
|
"karma-junit-reporter": "^0.4.1",
|
2016-03-29 01:29:49 +03:00
|
|
|
"karma-mocha": "^0.2.2",
|
|
|
|
"karma-phantomjs-launcher": "^1.0.0",
|
|
|
|
"karma-sourcemap-loader": "^0.3.7",
|
|
|
|
"karma-webpack": "^1.7.0",
|
|
|
|
"mocha": "^2.4.5",
|
|
|
|
"phantomjs-prebuilt": "^2.1.7",
|
2016-04-17 23:40:50 +03:00
|
|
|
"react-addons-test-utils": "^15.0.1",
|
2015-11-30 20:33:04 +03:00
|
|
|
"require-json": "0.0.1",
|
|
|
|
"rimraf": "^2.4.3",
|
2016-03-29 02:02:29 +03:00
|
|
|
"sinon": "^1.17.3",
|
|
|
|
"source-map-loader": "^0.1.5",
|
|
|
|
"webpack": "^1.12.14"
|
2015-06-09 19:40:42 +03:00
|
|
|
}
|
|
|
|
}
|