-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.68 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.68 KB
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
{
"name": "mongoose-transient",
"version": "0.0.0-development",
"description": "Create transient properties on mongoose schemas",
"main": "dist/index.js",
"scripts": {
"precm": "npm run test:coverage",
"cm": "git-cz",
"prebuild": "rimraf dist",
"build": "tsc",
"coverage:post": "codecov",
"pretest:coverage": "rimraf coverage",
"test:coverage": "jest --coverage --detectOpenHandles",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watchAll --detectOpenHandles",
"semantic-release": "semantic-release"
},
"keywords": [
"mongoose",
"transient",
"virtual",
"plugin",
"link",
"properties"
],
"author": "jfrazx",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/jest": "^26.0.22",
"@typescript-eslint/parser": "^4.20.0",
"codecov": "^3.8.1",
"commitizen": "^4.2.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.23.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"mongodb-memory-server": "^6.9.6",
"mongoose": "^5.12.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^26.5.4",
"typescript": "^4.2.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"repository": {
"type": "git",
"url": "https://github.com/jfrazx/mongoose-transient.git"
},
"peerDependencies": {
"mongoose": ">= 4.4.5"
}
}