nacl-blob
Version:
Encrypt browser blobs and files with tweetnacl-js-stream
70 lines (69 loc) • 2.27 kB
JSON
{
"name": "nacl-blob",
"description": "Encrypt browser blobs and files with tweetnacl-js-stream",
"version": "2.0.3",
"author": "Bret Comnes",
"browserify": {
"transform": [
"workerify"
]
},
"bugs": {
"url": "https://github.com/bcomnes/nacl-blob/issues"
},
"dependencies": {
"nacl-stream": "0.3.5",
"nanobus": "^4.4.0",
"workerify": "^1.1.0"
},
"devDependencies": {
"@tap-format/spec": "^0.2.0",
"auto-changelog": "^1.10.2",
"budo": "^11.2.0",
"cpx2": "^2.0.0",
"dependency-check": "^4.1.0",
"gh-release": "^3.4.0",
"global": "^4.3.2",
"lodash.get": "^4.4.2",
"mkdirp": "^1.0.0",
"node-fetch": "^2.1.2",
"npm-run-all": "^4.1.3",
"rimraf": "^3.0.0",
"standard": "^14.0.0",
"string-to-arraybuffer": "^1.0.0",
"tape": "^4.9.0",
"tape-run": "^6.0.0",
"tweetnacl": "^1.0.3",
"tweetnacl-util": "^0.15.0"
},
"homepage": "https://github.com/bcomnes/nacl-blob#readme",
"keywords": [
"browser",
"crypto",
"encryption",
"nacl",
"nacl-js",
"tweetnacl"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/bcomnes/nacl-blob.git"
},
"scripts": {
"build": "run-p build:*",
"build:dist": "rimraf dist && mkdirp dist && browserify index.js --no-bundle-external --standalone naclBlob -o dist/index.js",
"build:site": "rimraf build && mkdirp build && cpx 'example-site/static/*' build && browserify example-site/index.js -o build/bundle.js",
"prepare": "run-s build:dist",
"prepublishOnly": "git push && git push --tags && gh-release",
"start": "budo example-site/index.js:bundle.js --dir example-site/static --live --open",
"test": "run-s test:*",
"test-ie": "browserify test.js | tape-run --browser ie | tap-format-spec",
"test-live": "budo test.js --live --open",
"test:browser": "browserify test.js | tape-run | tap-format-spec",
"test:deps": "dependency-check package.json --missing --unused --entry index.js --no-dev --ignore-module workerify",
"test:lint": "standard",
"version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md"
}
}