package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "nwjs-builder-phoenix",
  3. "version": "1.1.0",
  4. "description": "",
  5. "main": "./dist/lib/index.js",
  6. "bin": {
  7. "build": "./dist/bin/build.js",
  8. "run": "./dist/bin/run.js"
  9. },
  10. "scripts": {
  11. "pretest": "npm run build",
  12. "test": "ava --verbose",
  13. "coverage": "nyc ava",
  14. "build": "tsc",
  15. "release": "npm test && standard-version"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/evshiron/nwjs-builder-phoenix.git"
  20. },
  21. "author": "evshiron",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/evshiron/nwjs-builder-phoenix/issues"
  25. },
  26. "homepage": "https://github.com/evshiron/nwjs-builder-phoenix#readme",
  27. "devDependencies": {
  28. "@types/debug": "0.0.29",
  29. "@types/es6-shim": "^0.31.32",
  30. "@types/fs-extra-promise": "0.0.31",
  31. "@types/node": "^7.0.5",
  32. "@types/progress": "^1.1.28",
  33. "@types/request": "0.0.41",
  34. "@types/tmp": "0.0.32",
  35. "@types/yargs": "^6.6.0",
  36. "ava": "^0.18.2",
  37. "cross-env": "^3.2.3",
  38. "nyc": "^10.1.2",
  39. "standard-version": "^4.0.0",
  40. "tslint": "^4.5.1",
  41. "typescript": "^2.2.1"
  42. },
  43. "dependencies": {
  44. "7zip-bin": "^2.0.4",
  45. "debug": "^2.6.1",
  46. "fs-extra-promise": "^0.4.1",
  47. "globby": "^6.1.0",
  48. "plist": "^2.0.1",
  49. "progress": "^1.1.8",
  50. "rcedit": "^0.8.0",
  51. "request": "^2.80.0",
  52. "request-progress": "^3.0.0",
  53. "source-map-support": "^0.4.11",
  54. "tmp": "0.0.31",
  55. "yargs": "^7.0.1"
  56. }
  57. }