-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.68 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
{
"name": "carbon-codemod",
"version": "1.14.2",
"description": "carbon-codemod",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config.js",
"jscodeshift": "jscodeshift",
"prepare": "husky install"
},
"keywords": [
"carbon",
"codemod",
"jscodeshift"
],
"author": "The Sage Group plc",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"babel-jest": "^27.5.1",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"jest": "^27.5.1",
"lint-staged": "^11.2.6",
"prettier": "^2.8.8",
"semantic-release": "^19.0.5"
},
"jest": {
"testEnvironment": "node"
},
"bin": {
"carbon-codemod": "./bin/carbon-codemod.js"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "^6.2.1",
"execa": "^5.1.1",
"jscodeshift": "^0.10.0"
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"preset": "conventionalcommits",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "chore(release): ${nextRelease.version}\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
}
}