package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "bson",
  3. "description": "A bson parser for node.js and the browser",
  4. "keywords": [
  5. "mongodb",
  6. "bson",
  7. "parser"
  8. ],
  9. "files": [
  10. "lib",
  11. "index.js",
  12. "browser_build",
  13. "bower.json"
  14. ],
  15. "version": "1.1.0",
  16. "author": "Christian Amor Kvalheim <christkv@gmail.com>",
  17. "contributors": [],
  18. "repository": "mongodb/js-bson",
  19. "bugs": {
  20. "mail": "node-mongodb-native@googlegroups.com",
  21. "url": "https://github.com/mongodb/js-bson/issues"
  22. },
  23. "devDependencies": {
  24. "benchmark": "1.0.0",
  25. "colors": "1.1.0",
  26. "nodeunit": "0.9.0",
  27. "babel-core": "^6.14.0",
  28. "babel-loader": "^6.2.5",
  29. "babel-polyfill": "^6.13.0",
  30. "babel-preset-es2015": "^6.14.0",
  31. "babel-preset-stage-0": "^6.5.0",
  32. "babel-register": "^6.14.0",
  33. "conventional-changelog-cli": "^1.3.5",
  34. "webpack": "^1.13.2",
  35. "webpack-polyfills-plugin": "0.0.9"
  36. },
  37. "config": {
  38. "native": false
  39. },
  40. "main": "./index",
  41. "directories": {
  42. "lib": "./lib/bson"
  43. },
  44. "engines": {
  45. "node": ">=0.6.19"
  46. },
  47. "scripts": {
  48. "test": "nodeunit ./test/node",
  49. "build": "webpack --config ./webpack.dist.config.js",
  50. "changelog": "conventional-changelog -p angular -i HISTORY.md -s",
  51. "lint": "eslint lib test",
  52. "format": "prettier --print-width 100 --tab-width 2 --single-quote --write 'test/**/*.js' 'lib/**/*.js'"
  53. },
  54. "browser": "lib/bson/bson.js",
  55. "license": "Apache-2.0"
  56. }