{
  "name": "@huanjiesm/nodeunrar",
  "version": "1.0.3",
  "description": "Pure JavaScript RAR archive extractor by compile the official unrar lib by Emscripten.",
  "homepage": "https://gitee.com/huanjie/nodeunrar",
  "bugs": {
    "url": "https://gitee.com/huanjie/nodeunrar/issues"
  },
  "repository": "https://gitee.com/huanjie/nodeunrar.git",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "prepare": "wget http://www.rarlab.com/rar/unrarsrc-5.4.5.tar.gz && tar -xf unrarsrc-5.4.5.tar.gz -C src/cpp && rm unrarsrc-5.4.5.tar.gz",
    "test": "mocha dist/test/*.spec.js",
    "clean": "rm -rf dist; rm -rf coverage; rm -rf dist_map",
    "clean-test": "rm -rf dist/test dist/build",
    "tslint": "tslint --project tsconfig.json",
    "tsc": "tsc",
    "buildDebug": "tsc && node ./dist/build/make.js",
    "prebuildRelease": "npm run tslint",
    "buildRelease": "npm run clean && tsc && node ./dist/build/make.js release",
    "debug": "npm run test -- --debug-brk --inspect",
    "coverage": "tsc --sourceMap --outDir dist_map && istanbul cover node_modules/.bin/_mocha -- dist_map/test/*.spec.js",
    "browserify": "mkdir umd; browserify dist/index.js -s array-diff -o umd/array-diff.js"
  },
  "keywords": [
    "unrar"
  ],
  "author": "huanjiesm <huanjiesm@163.com>",
  "license": "MIT",
  "devDependencies": {
    "@types/mocha": "^2.2.40",
    "@types/shelljs": "^0.7.0",
    "mocha": "^3.2.0",
    "shelljs": "^0.7.7",
    "tslint": "^5.0.0",
    "typescript": "^2.2.2",
    "fs-extra": "5.0.0"
  },
  "dependencies": {
    "@types/fs-extra": "^5.0.2"
  }
}
