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