element-web/package.json

46 lines
1.3 KiB
JSON
Raw Normal View History

{
"name": "matrix-react-sdk",
2015-10-02 19:55:09 +02:00
"version": "0.0.2",
"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": {
2015-09-10 16:28:30 +02:00
"build": "babel src -d lib --source-maps",
"start": "babel src -w -d lib --source-maps",
"clean": "rimraf lib",
"prepublish": "npm run build"
},
"dependencies": {
"classnames": "^2.1.2",
2015-07-08 17:25:27 +02:00
"filesize": "^3.1.2",
"flux": "^2.0.3",
2015-09-17 13:10:01 +02:00
"glob": "^5.0.14",
2015-11-27 16:39:52 +01:00
"highlight.js": "^8.9.1",
2015-09-17 13:10:01 +02:00
"linkifyjs": "^2.0.0-beta.4",
"marked": "^0.3.5",
2015-11-05 15:45:48 +01:00
"matrix-js-sdk": "https://github.com/matrix-org/matrix-js-sdk.git#develop",
2015-09-17 13:10:01 +02:00
"optimist": "^0.6.1",
2015-07-08 15:34:26 +02:00
"q": "^1.4.1",
2015-11-10 00:13:43 +01:00
"react": "^0.14.2",
"react-dom": "^0.14.2",
2015-11-27 16:39:52 +01:00
"sanitize-html": "^1.11.1",
"velocity-animate": "^1.2.3"
},
"//deps": "The loader packages are here because webpack in a project that depends on us needs them in this package's node_modules folder",
"//depsbuglink": "https://github.com/webpack/webpack/issues/1472",
"devDependencies": {
2015-09-10 16:28:30 +02:00
"babel": "^5.8.23",
"rimraf": "^2.4.3",
"json-loader": "^0.5.3",
"source-map-loader": "^0.1.5"
}
}