This repository has been archived by the owner on Feb 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
71 lines (71 loc) · 2.28 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "mongodb-extjson",
"version": "4.0.0-rc1",
"description": "MongoDB Extended JSON library",
"repository": {
"type": "git",
"url": "git+https://github.com/mongodb-js/mongodb-extjson.git"
},
"keywords": [
"mongodb",
"json",
"extended",
"extjson",
"parser",
"serializer",
"deserializer"
],
"author": "Christian Kvalheim",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mongodb-js/mongodb-extjson/issues"
},
"homepage": "https://github.com/mongodb-js/mongodb-extjson#readme",
"main": "lib/ext_json.js",
"module": "dist/mongodb-extjson.esm.js",
"browser": {
"./index.js": "./dist/mongodb-extjson.browser.umd.js",
"./dist/mongodb-extjson.esm.js": "./dist/mongodb-extjson.browser.esm.js"
},
"scripts": {
"test": "npm run-script test-node && npm run-script test-browser",
"test-node": "mocha test/",
"test-browser": "npm run-script build && karma start",
"docs": "jsdoc2md --heading-depth 3 --template etc/README.hbs --plugin dmd-clear --files lib/ext_json.js > README.md",
"coverage": "istanbul cover _mocha -- --recursive -t --ui tdd test/",
"lint": "eslint lib test",
"format": "prettier --print-width 100 --tab-width 2 --single-quote --write 'test/**/*.js' 'lib/**/*.js'",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-plugin-external-helpers": "^6.22.0",
"chai": "^4.1.2",
"conventional-changelog-cli": "^1.3.5",
"dmd-clear": "^0.1.2",
"eslint": "^4.7.2",
"eslint-plugin-prettier": "^2.3.1",
"istanbul": "^0.4.5",
"jsdoc-to-markdown": "^4.0.1",
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^6.0.0",
"mocha": "^3.4.1",
"prettier": "~1.12.0",
"rollup": "^0.56.2",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.2.1",
"rollup-plugin-node-resolve": "^3.0.3"
},
"dependencies": {
"bson": "4.0.0-rc1",
"buffer": "^5.1.0"
}
}