-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
38 lines (38 loc) · 878 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
38
{
"name": "bson-objectid",
"version": "2.0.4",
"description": "Construct ObjectIDs without the mongodb driver or bson module",
"main": "objectid.js",
"types": "./objectid.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"typescript-test": "tsc --project typing-tests",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/williamkapke/bson-objectid.git"
},
"keywords": [
"ObjectID",
"mongo",
"mongodb",
"bson",
"createFromHexString",
"hex"
],
"author": "William Kapke",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/williamkapke/bson-objectid/issues"
},
"homepage": "https://github.com/williamkapke/bson-objectid",
"devDependencies": {
"@types/node": "^8.0.31",
"mocha": "^5.2.0",
"should": "^4.1.0",
"typescript": "^4.6.2"
}
}