mirror of
https://github.com/nolanlawson/blob-util.git
synced 2025-12-08 19:46:19 +00:00
59 lines
1.7 KiB
JSON
59 lines
1.7 KiB
JSON
{
|
|
"name": "blob-util",
|
|
"version": "1.2.1",
|
|
"description": "Utilities for working with Blob objects in the browser",
|
|
"main": "lib/index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nolanlawson/blob-util.git"
|
|
},
|
|
"keywords": [
|
|
"blob",
|
|
"blobs",
|
|
"binary",
|
|
"util",
|
|
"utils"
|
|
],
|
|
"author": "Nolan Lawson <nolan.lawson@gmail.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/nolanlawson/blob-util/issues"
|
|
},
|
|
"scripts": {
|
|
"jshint": "jshint -c .jshintrc lib/*.js test/test.js",
|
|
"test": "npm run jshint && zuul ./test/test.js",
|
|
"test-local": "zuul ./test/test.js --local 9000",
|
|
"build": "mkdirp dist && npm run browserify && npm run min",
|
|
"browserify": "browserify . -p bundle-collapser/plugin -s blobUtil | ./bin/es3ify.js | derequire > dist/blob-util.js",
|
|
"min": "uglifyjs dist/blob-util.js -mc > dist/blob-util.min.js",
|
|
"jsdoc2md": "jsdoc2md --heading-depth 3 ./lib/index.js > README.md",
|
|
"jsdoc": "jsdoc -d docs ./lib/index.js && mv -f docs/global.html docs/index.html"
|
|
},
|
|
"dependencies": {
|
|
"blob": "0.0.4",
|
|
"native-or-lie": "1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "^9.0.3",
|
|
"bundle-collapser": "^1.1.4",
|
|
"chai": "~1.8.1",
|
|
"chai-as-promised": "~4.1.0",
|
|
"derequire": "^2.0.0",
|
|
"es3ify": "^0.1.3",
|
|
"istanbul": "^0.2.7",
|
|
"jsdoc": "^3.3.0-alpha10",
|
|
"jsdoc-to-markdown": "^0.5.9",
|
|
"jshint": "~2.3.0",
|
|
"mkdirp": "^0.5.0",
|
|
"mocha": "~1.18",
|
|
"request": "^2.36.0",
|
|
"uglify-js": "^2.4.13",
|
|
"zuul": "^3.10.1",
|
|
"zuul-ngrok": "nolanlawson/zuul-ngrok#patch-1"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"dist"
|
|
]
|
|
}
|