forked from orta/danger-plugin-yarn
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
115 lines (115 loc) · 2.81 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": "@seadub/danger-plugin-dependencies",
"description": "Provides dependency information on dependency changes in a PR",
"author": {
"name": "Chris Williams",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/sgtcoolguy/danger-plugin-dependencies.git"
},
"bugs": {
"url": "https://github.com/sgtcoolguy/danger-plugin-dependencies/issues"
},
"homepage": "https://github.com/sgtcoolguy/danger-plugin-dependencies#readme",
"keywords": [
"danger",
"danger-plugin",
"npm",
"yarn",
"dependencies"
],
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"build": "tsc",
"test": "jest",
"predocs": "rm -rf docs/",
"docs": "esdoc -c .esdoc.json",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"prettier": "prettier",
"prettier-write": "npm run prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120",
"prettier-project": "npm run prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\""
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"date-fns": "^2.16.1",
"lodash.flatten": "^4.4.0",
"lodash.includes": "^4.3.0",
"node-fetch": "^2.6.1",
"semver": "^7.3.2"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^3.3.0",
"danger": "^10.5.0",
"esdoc": "^1.1.0",
"husky": "^5.0.9",
"jest": "^26.5.0",
"lint-staged": "^10.4.0",
"prettier": "^2.1.2",
"semantic-release": "^17.1.2",
"ts-jest": "^26.4.1",
"tslint": "^6.1.3",
"typescript": "^4.0.3",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"npm run prettier-write --"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
],
"preset": "angular"
}
}