-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
78 lines (78 loc) · 2.25 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mongoose-field-encryption",
"version": "7.0.1",
"description": "A simple symmetric encryption plugin for individual fields. Dependency free, only mongoose peer dependency.",
"main": "lib/mongoose-field-encryption.js",
"types": "lib/mongoose-field-encryption.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "mocha",
"test:travis": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"test:auth": "URI='mongodb://mfe:[email protected]:27017/mongoose-field-encryption-test' npm test",
"test-coverage": "nyc --reporter=html --reporter=text ./node_modules/mocha/bin/_mocha && chromium ./coverage/index.html",
"test-coverage:auth": "URI='mongodb://mfe:[email protected]:27017/mongoose-field-encryption-test' nyc --reporter=html --reporter=text ./node_modules/mocha/bin/_mocha && chromium ./coverage/index.html",
"test-coverage:auth:coveralls": "URI='mongodb://mfe:[email protected]:27017/mongoose-field-encryption-test' nyc npm test && nyc report --reporter=text-lcov | coveralls",
"release-it": "release-it"
},
"repository": {
"type": "git",
"url": "https://github.com/wheresvic/mongoose-field-encryption"
},
"keywords": [
"mongoose",
"encryption",
"field",
"cqrs",
"string",
"encrypt",
"security",
"search",
"searchable",
"mongo"
],
"author": {
"name": "Victor Parmar",
"email": "[email protected]",
"url": "https://smalldata.tech"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/victorparmar/mongoose-field-encryption/issues"
},
"peerDependencies": {
"mongoose": ">=7.4.0"
},
"devDependencies": {
"bluebird": "3.7.2",
"chai": "4.3.7",
"coveralls": "3.1.1",
"mocha": "10.2.0",
"mocha-lcov-reporter": "1.3.0",
"mongoose": "^7.4.1",
"nyc": "15.1.0",
"release-it": "16.1.2",
"sinon": "15.2.0",
"typescript": "5.1.6"
},
"release-it": {
"hooks": {
"before:init": "npm run test:auth",
"before:bump": null,
"after:bump": null,
"before:release": null,
"after:release": "git describe --abbrev=0 --tags"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"gitlab": {
"release": false
}
}
}