2015-06-09 18:40:42 +02:00
|
|
|
{
|
|
|
|
"name": "matrix-react-example",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "Example usage of matrix-react-sdk",
|
|
|
|
"author": "matrix.org",
|
2015-06-09 19:52:26 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/matrix-org/matrix-react-sdk"
|
|
|
|
},
|
2015-07-03 16:56:04 +02:00
|
|
|
"license": "Apache-2.0",
|
2015-06-09 18:40:42 +02:00
|
|
|
"devDependencies": {
|
|
|
|
"browserify": "^10.2.3",
|
2015-07-03 16:56:04 +02:00
|
|
|
"http-server": "^0.8.0",
|
|
|
|
"matrix-react-sdk": "../../",
|
|
|
|
"parallelshell": "^1.2.0",
|
2015-06-09 18:40:42 +02:00
|
|
|
"reactify": "^1.1.1",
|
2015-06-11 18:46:25 +02:00
|
|
|
"uglify-js": "^2.4.23",
|
2015-06-09 18:40:42 +02:00
|
|
|
"watchify": "^3.2.1"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2015-08-14 15:11:47 +02:00
|
|
|
"build": "NODE_ENV=production browserify --ignore olm -t reactify index.js | uglifyjs -c -m -o bundle.js",
|
2015-07-23 11:28:52 +02:00
|
|
|
"start": "parallelshell \"watchify --ignore olm -v -d -t reactify index.js -o bundle.js\" \"http-server\""
|
2015-06-09 18:40:42 +02:00
|
|
|
}
|
|
|
|
}
|