-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
89 lines (89 loc) · 2.46 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "mongodb-schema",
"description": "Infer the probabilistic schema for a MongoDB collection.",
"version": "12.2.0",
"author": {
"name": "MongoDB Inc",
"email": "compass@mongodb.com"
},
"license": "Apache-2.0",
"homepage": "http://github.com/mongodb-js/mongodb-schema",
"repository": {
"type": "git",
"url": "git://github.com/mongodb-js/mongodb-schema.git"
},
"bugs": {
"url": "https://github.com/mongodb-js/mongodb-schema/issues"
},
"bin": {
"mongodb-schema": "bin/mongodb-schema"
},
"main": "lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./.esm-wrapper.mjs"
},
"types": "./lib/index.d.ts",
"files": [
"LICENSE",
"lib",
"bin",
"package.json",
"README.md",
".esm-wrapper.mjs"
],
"scripts": {
"test": "nyc mocha --timeout 5000 --colors -r ts-node/register test/*.ts",
"test-example-parse-from-file": "ts-node examples/parse-from-file.ts",
"test-example-parse-schema": "ts-node examples/parse-schema.ts",
"test-time": "ts-node ./test/time-testing.ts",
"build": "npm run compile-ts && gen-esm-wrapper . ./.esm-wrapper.mjs",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prepack": "npm run build",
"compile-ts": "tsc -p tsconfig.json",
"lint": "eslint \"{src,test,examples,bin}/**/*.ts\"",
"depcheck": "depcheck",
"check": "npm run lint && npm run depcheck"
},
"keywords": [
"mongodb",
"schema"
],
"dependencies": {
"reservoir": "^0.1.2"
},
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/reservoir": "^0.1.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"bson": "^6.7.0",
"coveralls": "^3.1.1",
"depcheck": "^1.4.3",
"eslint": "^8.30.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"gen-esm-wrapper": "^1.1.3",
"mocha": "^10.2.0",
"mongodb": "^6.6.1",
"nyc": "^15.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"optionalDependencies": {
"bson": "^6.7.0",
"cli-table": "^0.3.4",
"js-yaml": "^4.0.0",
"mongodb": "^6.6.1",
"mongodb-ns": "^2.4.0",
"numeral": "^2.0.6",
"progress": "^2.0.3",
"stats-lite": "^2.0.0",
"yargs": "^17.6.2"
}
}