forked from cdimascio/uuid-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "uuid-mongodb",
"version": "2.4.2",
"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",
"dependencies": {
"uuid": "^8.3.2"
},
"peerDependencies": {
"mongodb": "^3.6.3"
},
"devDependencies": {
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-prettier": "^3.3.0",
"mocha": "^8.2.1",
"mongodb": "^3.6.3",
"prettier": "^2.2.1"
}
}