UNPKG

@nraynaud/xo-vhdmount

Version:

Node JS utility to expose the content of a VHD file as a raw disk file with FUSE

78 lines (77 loc) 1.93 kB
{ "name": "@nraynaud/xo-vhdmount", "version": "0.0.1", "license": "AGPL-3.0", "description": "Node JS utility to expose the content of a VHD file as a raw disk file with FUSE", "keywords": [ "vhd", "FUSE" ], "homepage": "https://github.com/nraynaud/xo-vhdmount/", "bugs": "https://github.com/nraynaud/xo-vhdmount/issues", "repository": { "type": "git", "url": "git://github.com/nraynaud/xo-vhdmount.git" }, "preferGlobal": false, "main": "dist/", "bin": {}, "files": [ "dist/" ], "engines": { "node": ">=0.12" }, "dependencies": { "@nraynaud/struct-fu": "^1.0.1", "@nraynaud/xo-fs": "^0.0.4", "babel-runtime": "^6.11.6" }, "devDependencies": { "babel-cli": "^6.11.4", "babel-eslint": "^6.1.2", "babel-plugin-transform-runtime": "^6.12.0", "babel-preset-es2015": "^6.13.2", "babel-preset-stage-0": "^6.5.0", "chai": "^3.5.0", "chai-as-promised": "^5.3.0", "clarify": "^2.0.0", "dependency-check": "^2.6.0", "ghooks": "^1.3.2", "mocha": "^3.0.2", "nyc": "^8.1.0", "source-map-support": "^0.4.2", "standard": "^7.1.2", "trace": "^2.3.3" }, "scripts": { "build": "NODE_ENV=production babel --source-maps --out-dir=dist/ src/", "depcheck": "dependency-check ./package.json", "dev": "babel --watch --source-maps --out-dir=dist/ src/", "dev-test": "mocha --opts .mocha.opts --watch --reporter=min \"dist/**/*.spec.js\"", "lint": "standard", "posttest": "npm run lint && npm run depcheck", "prepublish": "npm run build", "test": "nyc mocha --opts .mocha.opts \"dist/**/*.spec.js\"" }, "babel": { "plugins": [ "transform-runtime" ], "presets": [ "stage-0", "es2015" ] }, "standard": { "ignore": [ "dist" ], "parser": "babel-eslint" }, "config": { "ghooks": { "commit-msg": "npm test" } } }