4d2926485b
Marked has some annoying bugs, and the author is inactive, so replace it with commonmark.js, which is the reference JavaScript implementation of CommonMark. CommonMark is also preferable since it has a specification, and a conformance test suite to make sure that parsers are correct. Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
110 lines
3.3 KiB
JSON
110 lines
3.3 KiB
JSON
{
|
|
"name": "matrix-react-sdk",
|
|
"version": "0.8.0",
|
|
"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",
|
|
"files": [
|
|
"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",
|
|
"test"
|
|
],
|
|
"bin": {
|
|
"reskindex": "scripts/reskindex.js"
|
|
},
|
|
"scripts": {
|
|
"reskindex": "scripts/reskindex.js -h header",
|
|
"build": "node scripts/babelcheck.js && babel src -d lib --source-maps",
|
|
"start": "node scripts/babelcheck.js && babel src -w -d lib --source-maps",
|
|
"lint": "eslint src/",
|
|
"lintall": "eslint src/ test/",
|
|
"clean": "rimraf lib",
|
|
"prepublish": "npm run build && git rev-parse HEAD > git-revision.txt",
|
|
"test": "karma start $KARMAFLAGS --browsers PhantomJS",
|
|
"test-multi": "karma start $KARMAFLAGS --single-run=false"
|
|
},
|
|
"dependencies": {
|
|
"babel-runtime": "^6.11.6",
|
|
"blueimp-canvas-to-blob": "^3.5.0",
|
|
"browser-encrypt-attachment": "^0.2.0",
|
|
"browser-request": "^0.3.3",
|
|
"classnames": "^2.1.2",
|
|
"draft-js": "^0.8.1",
|
|
"draft-js-export-html": "^0.5.0",
|
|
"draft-js-export-markdown": "^0.2.0",
|
|
"emojione": "2.2.3",
|
|
"filesize": "^3.1.2",
|
|
"flux": "^2.0.3",
|
|
"fuse.js": "^2.2.0",
|
|
"glob": "^5.0.14",
|
|
"highlight.js": "^8.9.1",
|
|
"isomorphic-fetch": "^2.2.1",
|
|
"linkifyjs": "^2.1.3",
|
|
"lodash": "^4.13.1",
|
|
"commonmark": "^0.27.0",
|
|
"matrix-js-sdk": "matrix-org/matrix-js-sdk#develop",
|
|
"optimist": "^0.6.1",
|
|
"q": "^1.4.1",
|
|
"react": "^15.4.0",
|
|
"react-addons-css-transition-group": "15.3.2",
|
|
"react-dom": "^15.4.0",
|
|
"react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#5e97aef",
|
|
"sanitize-html": "^1.11.1",
|
|
"velocity-vector": "vector-im/velocity#059e3b2",
|
|
"whatwg-fetch": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.5.2",
|
|
"babel-core": "^6.14.0",
|
|
"babel-eslint": "^6.1.0",
|
|
"babel-loader": "^6.2.5",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-plugin-transform-async-to-generator": "^6.16.0",
|
|
"babel-plugin-transform-class-properties": "^6.16.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.16.0",
|
|
"babel-plugin-transform-runtime": "^6.15.0",
|
|
"babel-polyfill": "^6.5.0",
|
|
"babel-preset-es2015": "^6.14.0",
|
|
"babel-preset-es2016": "^6.11.3",
|
|
"babel-preset-es2017": "^6.14.0",
|
|
"babel-preset-react": "^6.11.1",
|
|
"eslint": "^2.13.1",
|
|
"eslint-plugin-flowtype": "^2.17.0",
|
|
"eslint-plugin-react": "^6.2.1",
|
|
"expect": "^1.16.0",
|
|
"json-loader": "^0.5.3",
|
|
"karma": "^0.13.22",
|
|
"karma-chrome-launcher": "^0.2.3",
|
|
"karma-cli": "^0.1.2",
|
|
"karma-junit-reporter": "^0.4.1",
|
|
"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",
|
|
"react-addons-test-utils": "^15.4.0",
|
|
"require-json": "0.0.1",
|
|
"rimraf": "^2.4.3",
|
|
"sinon": "^1.17.3",
|
|
"source-map-loader": "^0.1.5",
|
|
"webpack": "^1.12.14"
|
|
}
|
|
}
|