rename npm package to @matrix-org/olm

to be published via our gitlab repository
This commit is contained in:
Hubert Chathi 2021-02-22 15:41:29 -05:00
parent a07e27cfa5
commit cabefb17dc
2 changed files with 12 additions and 4 deletions

3
.gitignore vendored
View file

@ -6,6 +6,9 @@
/olm-*.tgz /olm-*.tgz
/README.html /README.html
/tracing/README.html /tracing/README.html
/python/dist
/javascript/checksums.txt
/javascript/checksums.txt.asc
# Xcode # Xcode
build/ build/

View file

@ -1,5 +1,5 @@
{ {
"name": "olm", "name": "@matrix-org/olm",
"version": "3.2.1", "version": "3.2.1",
"description": "An implementation of the Double Ratchet cryptographic ratchet", "description": "An implementation of the Double Ratchet cryptographic ratchet",
"main": "olm.js", "main": "olm.js",
@ -8,7 +8,9 @@
"olm.wasm", "olm.wasm",
"olm_legacy.js", "olm_legacy.js",
"index.d.ts", "index.d.ts",
"README.md" "README.md",
"checksums.txt",
"checksums.txt.asc"
], ],
"scripts": { "scripts": {
"build": "make -C .. js", "build": "make -C .. js",
@ -16,7 +18,7 @@
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/matrix-org/olm.git" "url": "git+https://gitlab.matrix.org/matrix-org/olm.git"
}, },
"keywords": [ "keywords": [
"matrix-org" "matrix-org"
@ -26,8 +28,11 @@
"bugs": { "bugs": {
"url": "https://github.com/matrix-org/olm/issues" "url": "https://github.com/matrix-org/olm/issues"
}, },
"homepage": "https://github.com/matrix-org/olm#readme", "homepage": "https://gitlab.matrix.org/matrix-org/olm",
"devDependencies": { "devDependencies": {
"jasmine-node": "^1.14.5" "jasmine-node": "^1.14.5"
},
"publishConfig": {
"@matrix-org:registry":"https://gitlab.matrix.org/api/v4/projects/27/packages/npm/"
} }
} }