-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.72 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
{
"name": "@marketplacer/selective-changelog-generator",
"version": "1.2.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"prepublishOnly": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:code": "eslint --ignore-path .gitignore .",
"compile": "tsc",
"lint:commits:branch": "commitlint --from origin/HEAD --to HEAD --verbose",
"prepare": "husky install"
},
"author": "Marketplacer <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^16.0.0",
"@types/node": "^17.0.14",
"@types/semantic-release": "^17.2.3",
"@types/signale": "^1.4.7",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"typescript": "^4.5.5"
},
"dependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"axios": "^1.6",
"slackify-markdown": "^4.3.1"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/marketplacer/selective-changelog-generator.git"
},
"bugs": {
"url": "https://github.com/marketplacer/selective-changelog-generator/issues"
},
"homepage": "https://github.com/marketplacer/selective-changelog-generator#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}