2key-ratchet
Advanced tools
Comparing version 1.0.11 to 1.0.12
{ | ||
"name": "2key-ratchet", | ||
"version": "1.0.11", | ||
"version": "1.0.12", | ||
"description": "2key-ratchet is an implementation of a Double Ratchet protocol and X3DH in TypeScript utilizing WebCrypto.", | ||
@@ -10,3 +10,3 @@ "main": "dist/2key-ratchet.js", | ||
"scripts": { | ||
"test": "mocha out/test", | ||
"test": "mocha", | ||
"build": "npm run build:dist", | ||
@@ -22,10 +22,3 @@ "build:es5": "tsc", | ||
"sync": "git ac && git pull --rebase && git push", | ||
"precoverage": "npm run build:map", | ||
"coverage": "nyc npm test", | ||
"precoveragehtml": "npm run coverage", | ||
"coveragehtml": "nyc report -r html", | ||
"watch": "watch 'npm run coveragehtml' lib/ src/ test/", | ||
"live": "live-server -q --port=4005 --ignorePattern='(js|css|png)$' coverage", | ||
"predev": "if [ ! -f coverage/index.html ]; then mkdir coverage; cp .waiting.html coverage/index.html; fi", | ||
"dev": "npm-run-all -p --silent watch live", | ||
"coveralls": "nyc report --reporter=text-lcov | coveralls" | ||
@@ -54,23 +47,39 @@ }, | ||
"dependencies": { | ||
"node-webcrypto-ossl": "^1.0.36", | ||
"node-webcrypto-ossl": "^1.0.37", | ||
"pvtsutils": "^1.0.2", | ||
"tslib": "^1.9.0", | ||
"tsprotobuf": "^1.0.11" | ||
"tslib": "^1.9.2", | ||
"tsprotobuf": "^1.0.12" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.1.2", | ||
"@types/mocha": "^2.2.48", | ||
"@types/node": "^7.0.56", | ||
"@types/chai": "^4.1.4", | ||
"@types/mocha": "^5.2.3", | ||
"@types/node": "^10.3.4", | ||
"chai": "^4.1.2", | ||
"live-server": "^1.2.0", | ||
"mocha": "^3.5.3", | ||
"npm-run-all": "^3", | ||
"nyc": "^11.6.0", | ||
"rollup": "^0.41.6", | ||
"mocha": "^5.2.0", | ||
"npm-run-all": "^4.1.3", | ||
"nyc": "^12.0.2", | ||
"rollup": "^0.61.1", | ||
"rollup-plugin-node-builtins": "^2.1.2", | ||
"rollup-plugin-node-resolve": "^3.3.0", | ||
"rollup-plugin-typescript": "^0.8.1", | ||
"typescript": "^2.7.2", | ||
"watch": "^1.0.2" | ||
"ts-node": "^6.1.2", | ||
"typescript": "^2.9.2" | ||
}, | ||
"nyc": { | ||
"extension": [ | ||
".ts", | ||
".tsx" | ||
], | ||
"include": [ | ||
"src/**/*.ts" | ||
], | ||
"exclude": [ | ||
"**/*.d.ts" | ||
], | ||
"reporter": [ | ||
"text-summary", | ||
"html" | ||
] | ||
} | ||
} |
@@ -7,2 +7,3 @@ # 2key-ratchet | ||
[![npm version](https://badge.fury.io/js/2key-ratchet.svg)](https://badge.fury.io/js/2key-ratchet) | ||
[![NPM](https://nodei.co/npm/2key-ratchet.png)](https://nodei.co/npm/2key-ratchet/) | ||
@@ -9,0 +10,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
239772
26
5089
199
Updatednode-webcrypto-ossl@^1.0.37
Updatedtslib@^1.9.2
Updatedtsprotobuf@^1.0.12