-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
94 lines (94 loc) · 2.19 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "mongoose-patch-history",
"version": "2.0.0",
"description": "Mongoose plugin that saves a history of JSON patch operations for all documents belonging to a schema in an associated 'patches' collection",
"main": "lib/index.js",
"author": "Christoph Werner <[email protected]>",
"contributors": [
"Robin Weinreich <[email protected]>",
"Brett Ausmeier <[email protected]>",
"Ava Johnson <[email protected]>"
],
"license": "MIT",
"dependencies": {
"@babel/register": "^7.16.9",
"fast-json-patch": "^2.2.1",
"humps": "^2.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.22.0",
"bluebird": "^3.5.1",
"coveralls": "^3.0.0",
"istanbul": "^0.4.5",
"mocha": "^8.1.1",
"mongoose": "^5.12.3",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1"
},
"scripts": {
"addCompile": "git add lib/",
"coverage": "istanbul cover _mocha -- --require babel-register",
"compile": "rm -rf lib/ && babel -d lib/ src/",
"prepublish": "npm run compile",
"prettier": "prettier --no-semi --single-quote --trailing-comma es5 --write src/**/*.js",
"test": "mocha --require babel-register"
},
"pre-commit": {
"run": "prettier, test, compile, addCompile",
"silent": true
},
"repository": {
"type": "git",
"url": "git://github.com/gonsfx/mongoose-patch-history"
},
"bugs": "https://github.com/gonsfx/mongoose-patch-history/issues",
"nyc": {
"require": [
"@babel/register"
],
"reporter": [
"lcov",
"text"
],
"sourceMap": false,
"instrument": false
},
"keywords": [
"mongo",
"Mongo",
"MONGO",
"mongodb",
"Mongodb",
"MONGODB",
"mongoose",
"Mongoose",
"MONGOOSE",
"plugin",
"Plugin",
"PLUGIN",
"history",
"History",
"HISTORY",
"versioning",
"Versioning",
"VERSIONING",
"rollback",
"Rollback",
"ROLLBACK",
"json",
"Json",
"JSON",
"jsonpatch",
"JsonPatch",
"JSONPATCH",
"json-patch",
"Json-Patch",
"JSON-PATCH",
"json patch",
"Json Patch",
"JSON PATCH"
]
}