-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.3 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
{
"name": "@enigmatis/polaris-middlewares",
"version": "1.4.7",
"description": "handling middlewares in polaris",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"lint": "npm run tslint-check && tslint -p .",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"lint:fix": "npm run tslint-check && tslint -p . --fix",
"test": "jest --runInBand",
"coverage": "jest --runInBand --coverage",
"build": "rimraf dist && tsc -p tsconfig.json",
"semantic-release": "semantic-release",
"prepare": "npm run lint:fix && npm run build"
},
"publishConfig": {
"access": "public"
},
"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}"
}
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Enigmatis/polaris-delta-middleware.git"
},
"keywords": [
"polaris",
"graphql",
"graphql-ts"
],
"author": "Yarin Vaknin <[email protected]> (http://github.com/yarinvak)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Enigmatis/polaris-middlewares/issues"
},
"homepage": "https://github.com/Enigmatis/polaris-middlewares#readme",
"dependencies": {
"graphql-extensions": "^0.10.3"
},
"peerDependencies": {
"@enigmatis/polaris-common": "^1.0.9",
"@enigmatis/polaris-graphql-logger": "^1.2.0",
"@enigmatis/polaris-typeorm": "^2.3.4",
"apollo-server-plugin-base": "^0.6.8",
"graphql": "^14.5.8"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@enigmatis/polaris-common": "^1.4.4",
"@enigmatis/polaris-graphql-logger": "^1.4.2",
"@enigmatis/polaris-typeorm": "^2.3.5",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.4",
"apollo-server-plugin-base": "^0.6.8",
"graphql-extensions": "^0.10.3",
"husky": "^3.1.0",
"jest": "^26.1.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.2",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"tslint-consistent-codestyle": "^1.16.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.9.6"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint:fix"
}
}
}