-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.53 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
{
"name": "mongoose-model-migration",
"description": "Library for up/downgrading and versioning mongoose models",
"version": "0.0.0-semantic-release",
"engines": {
"node": ">=12.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hellivan/mongoose-model-migration.git"
},
"keywords": [
"mongodb",
"mongoose",
"versioning",
"models",
"collection",
"migration",
"typescript"
],
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json",
"check-dependencies": "dependency-check package.json --missing --no-dev",
"check-formatting": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint ./src --ext .ts",
"lint:ci": "eslint ./src --ext .ts --format junit -o reports/junit/eslint.xml",
"semantic-release": "semantic-release",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.config.json",
"cleanup-lockfile": "yarn-deduplicate --strategy fewer",
"prepare": "husky install"
},
"dependencies": {
"tslib": "^2.3.1"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^27.0.2",
"@types/node": "^12.20.36",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"condition-circle": "^2.0.2",
"dependency-check": "^4.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"jest-circus": "^27.3.1",
"jest-html-reporter": "^3.4.1",
"jest-junit": "^13.0.0",
"mongoose": "6.0.12",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.7",
"ts-jest": "^27.0.7",
"typescript": "~4.4.4",
"yarn-deduplicate": "^3.1.0"
},
"peerDependencies": {
"mongoose": "^6.0.12"
}
}