-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
57 lines (57 loc) · 1.3 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
{
"name": "mongoose-encryption",
"description": "Simple encryption and authentication plugin for Mongoose",
"version": "2.1.2",
"author": {
"name": "Joe Goldbeck"
},
"keywords": [
"mongoose",
"mongo",
"encrypt",
"encryption",
"sign",
"authenticate",
"authentication",
"mongodb",
"HMAC"
],
"main": "./index.js",
"types": "./types/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/joegoldbeck/mongoose-encryption.git"
},
"bugs": {
"url": "https://github.com/joegoldbeck/mongoose-encryption/issues"
},
"homepage": "https://github.com/joegoldbeck/mongoose-encryption",
"license": "MIT",
"dependencies": {
"async": "^3.2.3",
"buffer-equal-constant-time": "^1.0.1",
"dotty": "^0.1.2",
"json-stable-stringify": "^1.0.0",
"mpath": "^0.8.4",
"semver": "^5.5.0",
"underscore": "^1.5.0"
},
"peerDependencies": {
"mongoose": ">=5.0.0"
},
"devDependencies": {
"chai": "^1.0.0",
"coffeescript": "^1.7.0",
"mocha": "^9.0.0",
"mongoose": ">=5.0.0",
"sinon": "^1.10.3",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=4.4.5"
},
"scripts": {
"test": "mocha ./test --extension coffee --require coffeescript/register --timeout 3000 --exit",
"build-ts": "tsc"
}
}