-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 966 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
39
40
41
42
43
44
{
"name": "mongo-uuid-helper",
"version": "1.0.0",
"description": "NodeJS UUID helper based on official C# driver",
"main": "index.js",
"scripts": {
"test": "standard && nyc --reporter=html --reporter=text mocha test/**/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "[email protected]:confuser/node-mongo-uuid-helper.git"
},
"keywords": [
"mongo",
"mongodb",
"uuid",
"helper"
],
"author": "James Mortemore <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/confuser/node-mongo-uuid-helper/issues"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"mongodb": "^3.1.3"
},
"devDependencies": {
"coveralls": "^3.0.1",
"mocha": "^5.1.1",
"nyc": "^11.7.3",
"standard": "^11.0.1"
},
"standard": {
"globals": [
"describe",
"it",
"before"
]
}
}