-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.66 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
{
"name": "@nodepit/migrate-state-store-mongodb",
"version": "5.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "eslint --ext .ts ./lib ./test",
"build": "tsc -p tsconfig.build.json",
"clean": "rimraf ./.nyc_output ./coverage ./dist",
"preversion": "run-s clean lint test build"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.3.2",
"@types/jest": "^29.5.12",
"@types/node": "^14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"jest-junit": "^16.0.0",
"migrate": "^2.1.0",
"mongodb": "^6.8.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
},
"peerDependencies": {
"migrate": "^2.0.0",
"mongodb": "^5.0.0 || ^6.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NodePit/node-migrate-state-store-mongodb.git"
},
"keywords": [
"mongodb",
"migrate",
"state-store"
],
"author": "nodepit.com",
"bugs": {
"url": "https://github.com/NodePit/node-migrate-state-store-mongodb/issues"
},
"homepage": "https://github.com/NodePit/node-migrate-state-store-mongodb#readme",
"description": "MongoDB-based state storage implementation for the migrate aka. node-migrate framework",
"engines": {
"node": ">=14.20.1"
}
}