Files
element-web/package.json
T

87 lines
2.6 KiB
JSON
Raw Normal View History

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