Files
matrix-js-sdk/package.json
T
Kegan Dougal 9b4ba0afe8 Redo build process for browsers and node. Update examples.
We now rely on browserify for building browser-specific versions of the JS
SDK. This can be initiated by running 'npm run build-js'. Node versions are
unaffected.
2015-06-03 15:51:48 +01:00

29 lines
663 B
JSON

{
"name": "matrix-js-sdk",
"version": "0.0.4",
"description": "Matrix Client-Server SDK for Javascript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "./browser-build.sh",
"watch-js": "./browser-build.sh -w"
},
"repository": {
"url": "https://github.com/matrix-org/matrix-js-sdk"
},
"keywords": [
"matrix-org"
],
"browserify": "browser-index.js",
"author": "matrix.org",
"license": "Apache 2.0",
"dependencies": {
"browser-request": "^0.3.3",
"browserify": "^10.2.3",
"request": "^2.53.0"
},
"devDependencies": {
"watchify": "^3.2.1"
}
}