package.json 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. {
  2. "_from": "objection",
  3. "_id": "objection@1.1.10",
  4. "_inBundle": false,
  5. "_integrity": "sha512-42KWuyovT+bUD6X19kE9isfENFztGJWJMWSGjvP5yhlDIqiJABpGRmfd/uuQsveL41BkgEQiaUlBpeM44thCxQ==",
  6. "_location": "/objection",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "objection",
  12. "name": "objection",
  13. "escapedName": "objection",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/",
  21. "/schild"
  22. ],
  23. "_resolved": "https://registry.npmjs.org/objection/-/objection-1.1.10.tgz",
  24. "_shasum": "337af7f8677dee31b86a3ef39b2257bbf1a9d04c",
  25. "_spec": "objection",
  26. "_where": "/home/zorro/Documents/Sahib/zweiachtzehn",
  27. "author": {
  28. "name": "Sami Koskimäki",
  29. "email": "sami.koskimaki@vincit.com",
  30. "url": "https://github.com/koskimas"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/vincit/objection.js/issues"
  34. },
  35. "bundleDependencies": false,
  36. "contributors": [
  37. {
  38. "name": "Sami Koskimäki",
  39. "email": "sami.koskimaki@vincit.com",
  40. "url": "https://github.com/koskimas"
  41. },
  42. {
  43. "name": "Mikael Lepistö",
  44. "email": "mikael.lepisto@vincit.com",
  45. "url": "https://github.com/elhigu"
  46. },
  47. {
  48. "name": "Matthew McEachen",
  49. "email": "matthew-objection@photostructure.com",
  50. "url": "https://github.com/mceachen"
  51. },
  52. {
  53. "name": "Jürg Lehni",
  54. "email": "juerg@scratchdisk.com",
  55. "url": "https://github.com/lehni"
  56. }
  57. ],
  58. "dependencies": {
  59. "ajv": "^6.1.1",
  60. "bluebird": "^3.5.1",
  61. "lodash": "^4.17.4"
  62. },
  63. "deprecated": false,
  64. "description": "An SQL-friendly ORM for Node.js",
  65. "devDependencies": {
  66. "@types/knex": "^0.14.5",
  67. "@types/node": "^10.0.6",
  68. "babel-eslint": "^8.2.1",
  69. "chai": "^4.1.2",
  70. "chai-subset": "^1.6.0",
  71. "coveralls": "^3.0.0",
  72. "eslint": "^4.16.0",
  73. "eslint-plugin-prettier": "^2.5.0",
  74. "expect.js": "^0.3.1",
  75. "fs-extra": "^6.0.1",
  76. "glob": "^7.1.2",
  77. "istanbul": "^0.4.5",
  78. "knex": "0.x",
  79. "mocha": "^5.0.0",
  80. "mysql": "^2.15.0",
  81. "pg": "^7.4.1",
  82. "prettier": "^1.10.2",
  83. "sqlite3": "^4.0.0",
  84. "typescript": "^2.7.1"
  85. },
  86. "engines": {
  87. "node": ">=6.0.0"
  88. },
  89. "files": [
  90. "README.md",
  91. "LICENSE",
  92. "lib/*",
  93. "typings/*"
  94. ],
  95. "homepage": "https://github.com/vincit/objection.js#readme",
  96. "keywords": [
  97. "orm",
  98. "knex",
  99. "sql",
  100. "query",
  101. "query builder",
  102. "postgresql",
  103. "mysql",
  104. "sqlite3"
  105. ],
  106. "license": "MIT",
  107. "main": "lib/objection.js",
  108. "name": "objection",
  109. "peerDependencies": {
  110. "knex": "0.x"
  111. },
  112. "publishConfig": {
  113. "tag": "next"
  114. },
  115. "repository": {
  116. "type": "git",
  117. "url": "git://github.com/vincit/objection.js.git"
  118. },
  119. "scripts": {
  120. "coveralls": "cat ./testCoverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
  121. "eslint": "eslint --format codeframe \"examples/**/*.js\" \"lib/**/*.js\" \"tests/**/*.js\"",
  122. "perf": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf",
  123. "perf-opt": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf --trace_opt --trace_deopt",
  124. "perf-prof": "mocha --slow 60000 --timeout 60000 --reporter spec --recursive perf --prof",
  125. "prettier": "prettier --write \"{examples,lib,tests,typings}/**/*.{js,ts}\"",
  126. "test": "npm run eslint && mocha --slow 10 --timeout 15000 --reporter spec --recursive tests",
  127. "test-fast": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail",
  128. "test-opt": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --bail --trace_opt --trace_deopt",
  129. "test-prof": "mocha --slow 10 --timeout 15000 --reporter spec --recursive tests --prof",
  130. "test-travis": "npm run eslint && istanbul --config=.istanbul.yml cover _mocha -- --slow 100 --timeout 60000 --reporter spec --recursive tests && npm run test-typings",
  131. "test-typings": "tsc"
  132. },
  133. "types": "./typings/objection/index.d.ts",
  134. "version": "1.1.10"
  135. }