forked from Enigmatis/mongo-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.2 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "@enigmatis/mongo-driver",
"version": "1.8.5",
"description": "MongoDB driver for @enigmatis/polaris",
"main": "./dist/src/main.js",
"types": "./dist/src/main.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"cz": "git add . && git-cz",
"setup": "npm ci",
"build": "rimraf dist && tsc -p tsconfig.json",
"build-watch": "tsc --watch -p tsconfig.json",
"coverage": "jest --coverage",
"clean": "shx rm -rf node_modules/ dist/ docs/",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/",
"posttypedoc": "shx cp .nojekyll docs/.nojekyll",
"prepare": "npm run lint:fix && npm run build",
"lint": "npm run tslint-check && tslint -p .",
"lint:fix": "npm run tslint-check && tslint -p . --fix",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once",
"test": "npm run lint:fix && jest"
},
"repository": {
"type": "git",
"url": "https://github.com/Enigmatis/mongo-driver.git"
},
"keywords": [
"polaris",
"mongo",
"mongoose",
"mongodb"
],
"author": "Vlad BiKoV",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enigmatis/mongo-driver/issues"
},
"homepage": "https://github.com/Enigmatis/mongo-driver#readme",
"dependencies": {
"@enigmatis/utills": "^1.3.1",
"@types/joi": "^14.3.2",
"@types/mongoose": "^5.3.12",
"@types/node": "10.12.12",
"joi": "^14.3.1",
"mongoose": "^5.4.10"
},
"peerDependencies": {},
"devDependencies": {
"@commitlint/cli": "^7.3.2",
"@commitlint/config-conventional": "^7.3.1",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"@types/cors": "^2.8.4",
"@types/jest": "^24.0.9",
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^24.1.0",
"prettier": "^1.16.1",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"shx": "^0.3.2",
"travis-deploy-once": "^5.0.11",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.14.0",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.0.1",
"typedoc": "^0.14.2",
"typescript": "^3.2.4"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:fix",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}