UNPKG

1.66 kBJSONView Raw
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": "2.0.3",
16 "author": "Christian Amor Kvalheim <christkv@gmail.com>",
17 "license": "Apache-2.0",
18 "contributors": [],
19 "repository": "mongodb/js-bson",
20 "bugs": {
21 "mail": "node-mongodb-native@googlegroups.com",
22 "url": "https://github.com/mongodb/js-bson/issues"
23 },
24 "devDependencies": {
25 "benchmark": "^2.1.4",
26 "babel-core": "^6.26.0",
27 "babel-loader": "^7.1.2",
28 "babel-polyfill": "^6.26.0",
29 "babel-preset-env": "^1.6.0",
30 "babel-preset-stage-0": "^6.24.1",
31 "babel-register": "^6.26.0",
32 "chai": "^4.1.2",
33 "conventional-changelog-cli": "^1.3.5",
34 "eslint": "^4.7.2",
35 "eslint-plugin-prettier": "^2.3.1",
36 "istanbul": "^0.4.5",
37 "mocha": "^3.5.3",
38 "prettier": "^1.7.0",
39 "webpack": "^3.6.0",
40 "webpack-polyfills-plugin": "0.1.0"
41 },
42 "config": {
43 "native": false
44 },
45 "main": "./index",
46 "directories": {
47 "lib": "./lib/bson"
48 },
49 "engines": {
50 "node": ">=4.0.0"
51 },
52 "scripts": {
53 "test": "mocha ./test/node",
54 "build": "webpack --config ./webpack.dist.config.js",
55 "lint": "eslint lib test",
56 "format": "prettier --print-width 100 --tab-width 2 --single-quote --write 'test/**/*.js' 'lib/**/*.js'",
57 "changelog": "conventional-changelog -p angular -i HISTORY.md -s",
58 "coverage": "istanbul cover _mocha -- --recursive --ui tdd test/node",
59 "prepublishOnly": "npm run build"
60 },
61 "browser": "browser_build/bson.js"
62}