package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. {
  2. "name": "lowdb",
  3. "version": "1.0.0",
  4. "description": "Small JSON database for Node, Electron and the browser. Powered by Lodash.",
  5. "keywords": [
  6. "flat",
  7. "file",
  8. "local",
  9. "database",
  10. "storage",
  11. "JSON",
  12. "lodash",
  13. "localStorage",
  14. "electron",
  15. "embed",
  16. "embeddable"
  17. ],
  18. "main": "./lib/main.js",
  19. "scripts": {
  20. "test": "jest && npm run lint",
  21. "lint": "eslint . --ignore-path .gitignore",
  22. "fix": "npm run lint -- --fix",
  23. "prepublishOnly": "npm run build && pkg-ok",
  24. "build": "npm run build:lib && npm run build:dist",
  25. "build:lib": "rimraf lib && babel src --out-dir lib && npm run mvAdapters",
  26. "build:dist": "rimraf dist && webpack && webpack -p",
  27. "mvAdapters": "rimraf adapters && mv lib/adapters .",
  28. "precommit": "npm test"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/typicode/lowdb.git"
  33. },
  34. "author": "Typicode <typicode@gmail.com>",
  35. "license": "MIT",
  36. "bugs": {
  37. "url": "https://github.com/typicode/lowdb/issues"
  38. },
  39. "homepage": "https://github.com/typicode/lowdb",
  40. "dependencies": {
  41. "graceful-fs": "^4.1.3",
  42. "is-promise": "^2.1.0",
  43. "lodash": "4",
  44. "pify": "^3.0.0",
  45. "steno": "^0.4.1"
  46. },
  47. "devDependencies": {
  48. "babel-cli": "^6.2.0",
  49. "babel-eslint": "^7.0.0",
  50. "babel-jest": "^20.0.3",
  51. "babel-loader": "^7.1.1",
  52. "babel-polyfill": "^6.9.1",
  53. "babel-preset-env": "^1.6.0",
  54. "babel-register": "^6.9.0",
  55. "delay": "^2.0.0",
  56. "eslint": "^4.5.0",
  57. "eslint-config-prettier": "^2.3.0",
  58. "eslint-config-standard": "^10.2.1",
  59. "eslint-plugin-import": "^2.6.1",
  60. "eslint-plugin-node": "^5.1.0",
  61. "eslint-plugin-prettier": "^2.1.2",
  62. "eslint-plugin-promise": "^3.5.0",
  63. "eslint-plugin-standard": "^3.0.1",
  64. "husky": "^0.14.3",
  65. "jest": "^20.0.4",
  66. "lodash-id": "^0.14.0",
  67. "mv": "^2.1.1",
  68. "pkg-ok": "^1.0.1",
  69. "prettier": "^1.5.2",
  70. "ramda": "^0.24.1",
  71. "regenerator-runtime": "^0.11.0",
  72. "rimraf": "^2.5.4",
  73. "sinon": "^3.2.1",
  74. "tempfile": "^2.0.0",
  75. "webpack": "^3.3.0"
  76. },
  77. "engines": {
  78. "node": ">=4"
  79. }
  80. }