forked from joegoldbeck/mongoose-encryption
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.4 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
{
"name": "mongoose-encryption-perdoc",
"description": "Simple encryption and authentication plugin for Mongoose",
"version": "1.5.0",
"author": {
"name": "Anselm Schultes, based on code by Joe Goldbeck"
},
"keywords": [
"mongoose",
"mongo",
"encrypt",
"encryption",
"sign",
"authenticate",
"authentication",
"mongodb",
"HMAC"
],
"main": "./index.js",
"repository": {
"type": "git",
"url": "git://github.com/anselms/mongoose-encryption-perdoc.git"
},
"bugs": {
"url": "https://github.com/anselms/mongoose-encryption-perdoc/issues"
},
"homepage": "https://github.com/anselms/mongoose-encryption-perdoc",
"license": "MIT",
"dependencies": {
"async": "^0.9.2",
"buffer-equal-constant-time": "1.0.1",
"dotty": "0.0.2",
"json-stable-stringify": "1.0.0",
"mpath": "0.2.1",
"semver": "5.1.x",
"underscore": ">=1.5.0 <2.0.0"
},
"peerDependencies": {
"mongoose": ">=3.8.28"
},
"devDependencies": {
"jest": "^20.0.3",
"mockgoose": "^7.3.1",
"mongoose": ">=3.8.28",
"nsp": "^2.6.3",
"snyk": "^1.30.1"
},
"engines": {
"node": ">= 0.10.25"
},
"scripts": {
"test": "node __pretest__/pretest.js && jest --coverage --runInBand --forceExit",
"testSnyk": "nsp check && snyk auth $SNYK_API_KEY && snyk test && node __pretest__/pretest.js && jest --coverage --runInBand --forceExit"
}
}