This repository has been archived by the owner on Nov 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
107 lines (107 loc) · 2.94 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
{
"name": "@enigmatis/utills",
"version": "1.3.3",
"description": "common utils and types for polaris",
"main": "./dist/main.js",
"types": "./dist/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",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/Enigmatis/utills.git"
},
"keywords": [
"polaris",
"types",
"utills"
],
"author": "Vlad BiKoV",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enigmatis/mongo-driver/issues"
},
"homepage": "https://github.com/Enigmatis/mongo-driver#readme",
"dependencies": {
"@enigmatis/polaris-logs": "^2.2.1",
"@types/node": "10.12.12"
},
"peerDependencies": {
"@enigmatis/polaris": "^2.0.0"
},
"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",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"prettier": "^1.16.1",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.3",
"shx": "^0.3.2",
"travis-deploy-once": "^5.0.11",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.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"
}
}
}