-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 3.47 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
116
117
118
119
120
121
{
"name": "@sonia-corporation/conventional-changelog",
"version": "1.3.0",
"author": {
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
},
"contributors": [
{
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
}
],
"description": "Sonia Conventional Changelog for Semantic Release",
"homepage": "https://github.com/Sonia-corporation/conventional-changelog",
"maintainers": [
{
"email": "[email protected]",
"name": "Geoffrey 'C0ZEN' Testelin",
"url": "https://github.com/C0ZEN"
}
],
"license": "MIT",
"keywords": [
"sonia",
"conventional-changelog",
"javascript",
"semantic-release"
],
"repository": {
"type": "git",
"url": "https://github.com/Sonia-corporation/conventional-changelog.git"
},
"bugs": {
"url": "https://github.com/Sonia-corporation/conventional-changelog/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./scripts/commitizen.js"
}
},
"engines": {
"npm": "7.24.2"
},
"private": false,
"files": [
"templates",
"CHANGELOG.md",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"conventional-changelog.js",
"conventional-recommended-bump.js",
"index.js",
"LICENSE",
"package.json",
"package-lock.json",
"parser-opts.js",
"README.md",
"writer-opts.js"
],
"main": "./index.js",
"scripts": {
"\n# TEST SCRIPTS:": "",
"test": "c8 mocha --timeout 60000 test{,/*}.js",
"\n# LINT SCRIPTS:": "",
"lint": "eslint --fix --ext .js,.ts --cache scripts/ writer-opts.js parser-opts.js conventional-recommended-bump.js conventional-changelog.js index.js",
"lint:ci": "eslint --ext .js,.ts scripts/ writer-opts.js parser-opts.js conventional-recommended-bump.js conventional-changelog.js index.js",
"\n# UTILS SCRIPTS:": "",
"commitmsg": "cz-customizable-ghooks",
"cz": "git add . && git-cz && npm run git:push",
"semver": "semantic-release",
"semver:dry-run": "semantic-release --dry-run",
"commit": "npm run cz",
"git:push": "git push-upstream"
},
"dependencies": {
"compare-func": "2.0.0",
"lodash": "4.17.21",
"q": "1.5.1"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.0.7",
"@typescript-eslint/eslint-plugin": "4.0.1",
"@typescript-eslint/parser": "4.0.1",
"better-than-before": "1.0.0",
"c8": "7.1.2",
"chai": "4.2.0",
"commitizen": "4.2.1",
"conventional-changelog-core": "4.2.4",
"cz-customizable": "6.3.0",
"cz-customizable-ghooks": "2.0.0",
"eslint": "7.10.0",
"eslint-config-google": "0.14.0",
"eslint-config-prettier": "6.12.0",
"eslint-config-recommended": "4.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-rxjs": "0.0.2-beta.29",
"eslint-plugin-typescript-sort-keys": "2.1.0",
"git-dummy-commit": "1.2.1",
"husky": "4.3.8",
"lint-staged": "11.2.3",
"mocha": "8.0.1",
"prettier": "2.1.1",
"semantic-release": "17.1.1",
"shelljs": "0.8.5",
"through2": "4.0.2",
"ts-auto-mock": "2.3.5",
"ts-node-dev": "1.0.0-pre.63",
"tsconfig-paths": "3.11.0",
"ttypescript": "1.5.11",
"typescript": "4.0.3"
}
}