You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2026-01-03 23:22:30 +03:00
67 lines
2.0 KiB
JSON
67 lines
2.0 KiB
JSON
{
|
|
"name": "matrix-js-sdk",
|
|
"version": "0.7.3",
|
|
"description": "Matrix Client-Server SDK for Javascript",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "istanbul cover --report cobertura --config .istanbul.yml -i \"lib/**/*.js\" jasmine-node -- spec --verbose --junitreport --captureExceptions",
|
|
"check": "jasmine-node spec --verbose --junitreport --captureExceptions",
|
|
"gendoc": "jsdoc -r lib -P package.json -R README.md -d .jsdoc",
|
|
"start": "babel -s -w -d lib src",
|
|
"build": "babel -s -d lib src && rimraf dist && mkdir dist && browserify --exclude olm browser-index.js -o dist/browser-matrix.js --ignore-missing && uglifyjs -c -m -o dist/browser-matrix.min.js dist/browser-matrix.js",
|
|
"dist": "npm run build",
|
|
"watch": "watchify --exclude olm browser-index.js -o dist/browser-matrix-dev.js -v",
|
|
"lint": "eslint --max-warnings 3480 src spec",
|
|
"prepublish": "npm run lint && npm run build && git rev-parse HEAD > git-revision.txt"
|
|
},
|
|
"repository": {
|
|
"url": "https://github.com/matrix-org/matrix-js-sdk"
|
|
},
|
|
"keywords": [
|
|
"matrix-org"
|
|
],
|
|
"browser": "browser-index.js",
|
|
"author": "matrix.org",
|
|
"license": "Apache-2.0",
|
|
"files": [
|
|
"CHANGELOG.md",
|
|
"CONTRIBUTING.rst",
|
|
"LICENSE",
|
|
"README.md",
|
|
"RELEASING.md",
|
|
"examples",
|
|
"git-hooks",
|
|
"git-revision.txt",
|
|
"index.js",
|
|
"browser-index.js",
|
|
"jenkins.sh",
|
|
"lib",
|
|
"package.json",
|
|
"release.sh",
|
|
"spec",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"another-json": "^0.2.0",
|
|
"browser-request": "^0.3.3",
|
|
"browserify": "^10.2.3",
|
|
"q": "^1.4.1",
|
|
"request": "^2.53.0"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.18.0",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"eslint": "^3.13.1",
|
|
"eslint-config-google": "^0.7.1",
|
|
"istanbul": "^0.3.13",
|
|
"jasmine-node": "^1.14.5",
|
|
"jsdoc": "^3.4.0",
|
|
"rimraf": "^2.5.4",
|
|
"uglifyjs": "^2.4.10",
|
|
"watchify": "^3.2.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"olm": "https://matrix.org/packages/npm/olm/olm-2.1.0.tgz"
|
|
}
|
|
}
|