-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.65 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.65 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
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
{
"name": "@makerstreet/danger",
"description": "Shared Danger checks for Elements projects",
"author": "Makerstreet - Elements",
"repository": {
"type": "git",
"url": "git+https://github.com/elementsinteractive/danger.git"
},
"keywords": [
"danger",
"danger-plugin",
"elements"
],
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/types.d.ts",
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"build": "tsc",
"test": "jest",
"prepublish": "yarn build",
"prettier": "prettier",
"prettier-write": "yarn prettier -- --parser typescript --no-semi --trailing-comma all --write --print-width 120",
"prettier-project": "yarn prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "eslint \"src/**/*.ts\"",
"semantic-release": "semantic-release"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"danger": "11.2.3",
"lodash": "4.17.21"
},
"devDependencies": {
"@octokit/core": "^4.2.0",
"@octokit/plugin-paginate-rest": "^2.17.0",
"@octokit/rest": "^19.0.7",
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.30.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"danger": "*",
"eslint": "^8.17.0",
"form-data": "^4.0.0",
"gitlab": "^14.2.2",
"husky": "^8.0.1",
"jest": "^28.1.2",
"lint-staged": "^13.0.3",
"lodash": "^4.17.21",
"prettier": "^2.6.2",
"semantic-release": "^19.0.3",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4",
"undici": "^5.20.0",
"validate-commit-msg": "^2.12.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"eslint --fix",
"npm run prettier-write --",
"git add"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"release": {
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
]
},
"bugs": {
"url": "https://github.com/elementsinteractive/danger/issues"
},
"homepage": "https://github.com/elementsinteractive/danger#readme",
"publishConfig": {
"access": "public"
}
}