forked from mongodb/js-bson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.38 KB
/
package.json
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
{
"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.0.6",
"author": "Christian Amor Kvalheim <[email protected]>",
"contributors": [],
"repository": "mongodb/js-bson",
"bugs": {
"mail": "[email protected]",
"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"
}