forked from asyncapi/asyncapi-react
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.39 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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/asyncapi-react.git"
},
"author": {
"name": "The Kyma project authors",
"url": "http://kyma-project.io"
},
"bugs": {
"url": "https://github.com/asyncapi/asyncapi-react/issues"
},
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"start": "lerna exec --parallel -- npm run start",
"test": "cd library && npm test",
"build": "cd library && npm run prepare",
"lint-check": "tslint -c ./tslint.json --project tsconfig.base.json --format verbose && prettier --check '**/*.{ts,tsx,js,jsx,json,html,css,yaml}'",
"lint-fix": "tslint -c ./tslint.json --project tsconfig.base.json --format verbose --fix && prettier --write '**/*.{ts,tsx,js,jsx,json,html,css,yaml}'",
"conflict-check": "tslint-config-prettier-check ./tslint.json",
"markdownlint": "markdownlint **/*.md",
"release": "semantic-release",
"get-lib-version": "cd library && npm run get-version"
},
"devDependencies": {
"tslib": "^1.10.0",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"tslint-react-hooks": "^2.1.1",
"lint-staged": "^8.2.1",
"husky": "^2.4.1",
"lerna": "^3.15.0",
"markdownlint-cli": "^0.17.0",
"prettier": "^1.18.2",
"typescript": "^3.5.3",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/github": "^7.0.4",
"@semantic-release/npm": "^7.0.3",
"@semantic-release/release-notes-generator": "^9.0.1",
"conventional-changelog-conventionalcommits": "^4.2.3",
"semantic-release": "^17.0.4"
},
"lint-staged": {
"linters": {
"**/*.{ts,tsx,js,jsx,json,css,html,yaml}": [
"prettier --write",
"git add"
]
},
"ignore": [
"package.json",
"package-lock.json"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "library"
}
],
"@semantic-release/github"
]
}
}