package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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.6",
  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. "standard-version": "^9.1.1",
  35. "webpack": "^1.13.2",
  36. "webpack-polyfills-plugin": "0.0.9"
  37. },
  38. "config": {
  39. "native": false
  40. },
  41. "main": "./index",
  42. "directories": {
  43. "lib": "./lib/bson"
  44. },
  45. "engines": {
  46. "node": ">=0.6.19"
  47. },
  48. "scripts": {
  49. "test": "nodeunit ./test/node",
  50. "build": "webpack --config ./webpack.dist.config.js",
  51. "changelog": "conventional-changelog -p angular -i HISTORY.md -s",
  52. "lint": "eslint lib test",
  53. "format": "prettier --print-width 100 --tab-width 2 --single-quote --write 'test/**/*.js' 'lib/**/*.js'",
  54. "release": "standard-version -i HISTORY.md"
  55. },
  56. "browser": "lib/bson/bson.js",
  57. "license": "Apache-2.0"
  58. }