This repository has been archived by the owner on Jan 19, 2024. It is now read-only.
forked from mongodb-js/mongodb-extjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.86 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
{
"name": "mongodb-extjson",
"version": "3.0.3",
"description": "MongoDB Extended JSON library",
"main": "index.js",
"browser": "dist/mongodb-extjson.js",
"scripts": {
"test": "npm run-script test-node && npm run-script test-browser",
"test-node": "mocha test/",
"test-browser": "karma start",
"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"
},
"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",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"conventional-changelog-cli": "^1.3.5",
"eslint": "^4.7.2",
"eslint-plugin-prettier": "^2.3.1",
"istanbul": "^0.4.5",
"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": "^3.0.2",
"buffer": "^5.1.0"
}
}