-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
37 lines (37 loc) · 1000 Bytes
/
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
{
"name": "uuid-mongodb",
"version": "2.6.0",
"description": "Generates and parses MongoDB BSON UUIDs. Plays nicely with others including the MongoDB native driver and Mongoose.",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"test": "mocha test/**/*.js ",
"lint": "eslint lib/**/*.js",
"lint:fix": "eslint --fix lib/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdimascio/uuid-mongodb.git"
},
"keywords": [
"uuid",
"mongodb"
],
"author": "Carmine DiMascio <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdimascio/uuid-mongodb/issues"
},
"homepage": "https://github.com/cdimascio/uuid-mongodb#readme",
"devDependencies": {
"eslint": "8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"mongodb": "^6.9.0",
"prettier": "^3.3.3"
},
"dependencies": {
"uuid": "^10.0.0"
}
}