-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 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
{
"name": "delay-tolerant-mongoose",
"description": "A plug and play mongoose wrapper, that allows your app to work over DTNs (Delay Tolerant Networks).",
"version": "2.1.0",
"author": "Octavio Percivaldi <[email protected]> (https://github.com/octaviotastico/)",
"license": "MIT",
"type": "module",
"keywords": [
"db",
"dtn",
"delay-tolerant",
"networks",
"mongo",
"mongodb",
"mongoose",
"database"
],
"repository": "octaviotastico/delay-tolerant-mongoose",
"main": "./lib/index.js",
"dependencies": {
"diff3": "^0.0.3",
"mongoose": "^6.0.12",
"python-struct": "^1.1.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.17.9",
"@types/jest": "^27.4.1",
"babel-jest": "^27.5.1",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"express": "^4.17.3",
"jest": "^27.5.1",
"mongodb-memory-server": "^8.5.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"scripts": {
"start": "node ./lib/index.js",
"test": "jest --watchAll --coverage --verbose --silent --runInBand"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"transformIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}