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