-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1007 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
{
"name": "mongoose-notekeeper-plugin",
"version": "0.0.1",
"description": "Keep track of changes in your documents",
"author": "João Lucchetta (Luke) <[email protected]>",
"license": "LGPL-3.0",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/joaolucasl/mongoose-notekeeper-plugin.git"
},
"keywords": [
"mongoose",
"history",
"plugin",
"typescript"
],
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"devDependencies": {
"@types/mongoose": "^5.5.7",
"@types/ramda": "^0.26.15",
"jest": "^24.8.0",
"mock-mongoose": "^7.4.0-r2",
"mongodb-memory-server": "^5.1.5",
"mongoose": "^5.6.2",
"rollup": "^1.16.4",
"rollup-plugin-terser": "^5.1.0",
"rollup-plugin-typescript2": "^0.21.2",
"typescript": "^3.5.2"
},
"dependencies": {
"dayjs": "^1.8.14",
"rambda": "^2.11.1",
"ramda": "^0.26.1"
}
}