-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.31 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
{
"name": "rlsr",
"version": "5.1.1",
"description": "create npm releses and changelogs from a multi repo",
"main": "build/src/index.js",
"bin": {
"rlsr": "./build/src/bin.js"
},
"publishConfig": {
"registry": "http://registry.npmjs.com/"
},
"scripts": {
"c": "git-cz",
"rlsr": "node ./bin/rlsr4",
"test": "yarn jest && yarn lint",
"lint": "eslint .",
"ts:watch": "yarn tsc --watch",
"ts:compile": "yarn tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/xing/rlsr.git"
},
"keywords": [
"npm",
"release",
"changelog",
"conventional-changelog"
],
"author": "Matthias Reis",
"license": "MIT",
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/conventional-commits-parser": "^3.0.1",
"@types/cosmiconfig": "^6.0.0",
"@types/eslint": "7.2.13",
"@types/eslint-plugin-prettier": "3.1.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.5",
"@types/prettier": "2.3.0",
"@types/ramda": "^0.27.42",
"@types/semver": "^7.3.7",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^5.23.0",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.29.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.6",
"prettier": "2.3.2",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"dependencies": {
"@schemastore/package": "^0.0.6",
"chalk": "^4.1.1",
"conventional-commits-parser": "3.2.4",
"cosmiconfig": "^7.0.0",
"find-up": "^5.0.0",
"glob": "7.1.7",
"ramda": "0.27.1",
"semver": "7.5.2",
"simple-git": "^3.3.0",
"yargs": "^17.0.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"rlsr": {
"debug": true,
"registry": "https://nexus.dc.xing.com/repository/npm-publish/"
},
"jest": {
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/build"
]
}
}