-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "@endemolshinegroup/cz-github",
"description": "A Commitizen adapter for GitHub",
"version": "2.0.0",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"commitizen",
"commitizen-adapter",
"github",
"typescript"
],
"author": {
"name": "Endemol Shine Group Technology",
"url": "https://github.com/EndemolShineGroup"
},
"homepage": "https://github.com/EndemolShineGroup/cz-github",
"repository": {
"type": "git",
"url": "https://github.com/EndemolShineGroup/cz-github.git"
},
"engines": {
"node": ">=10.0.0",
"yarn": ">=1.3.0"
},
"scripts": {
"commit": "yarn build && git-cz",
"build": "rimraf dist/ && tsc",
"build:docs": "rimraf docs/api && typedoc --out docs/api --target es6 --theme minimal --mode file src",
"build:watch": "tsc --watch",
"lint": "tslint -p tsconfig.json -t codeFrame 'src/**/*.ts' -e 'src/**/*.spec.ts'",
"pretest": "rimraf coverage/",
"test": "jest --no-cache --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"conventional-commit-types": "^3",
"git-rev-sync": "^2",
"lodash.compact": "^3",
"lodash.find": "^4",
"lodash.get": "^4",
"lodash.has": "^4",
"lodash.map": "^4",
"lodash.max": "^4",
"lodash.padend": "^4",
"tslib": "^2",
"word-wrap": "^1"
},
"devDependencies": {
"@commitlint/cli": "^8",
"@commitlint/config-conventional": "^8",
"@endemolshinegroup/cz-github": "^2",
"@endemolshinegroup/prettier-config": "^1",
"@endemolshinegroup/tslint-config": "^1",
"@semantic-release/changelog": "^5",
"@semantic-release/git": "^9",
"@types/git-rev-sync": "^2",
"@types/inquirer": "^6.5.0",
"@types/jest": "^26",
"@types/lodash.compact": "^3",
"@types/lodash.find": "^4",
"@types/lodash.get": "^4",
"@types/lodash.has": "^4",
"@types/lodash.map": "^4",
"@types/lodash.max": "^4",
"@types/lodash.padend": "^4",
"@types/node": "10.*",
"commitizen": "^4",
"husky": "^4",
"jest": "^26",
"lint-staged": "^10",
"prettier": "^2",
"rimraf": "^3",
"semantic-release": "^17",
"ts-jest": "^26",
"tslint": "^5",
"tslint-config-prettier": "^1",
"tslint-eslint-rules": "^5",
"typedoc": "^0.17.7",
"typescript": "^3"
}
}