-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
118 lines (118 loc) · 2.9 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
{
"name": "web-components-codemods",
"version": "1.2.3",
"description": "Codemods for Web Components",
"main": "src/index.js",
"keywords": [
"codemods",
"web-components",
"jscodeshift",
"cli"
],
"author": "Kus Cámara <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kcmr/web-components-codemods.git"
},
"bugs": {
"url": "https://github.com/kcmr/web-components-codemods/issues"
},
"homepage": "https://github.com/kcmr/web-components-codemods#readme",
"scripts": {
"test": "jest",
"lint:eslint": "eslint \"bin/**\" \"src/**\" \"transforms/**\"",
"format:prettier": "prettier --write \"**/*.{js,md}\"",
"format:eslint": "npm run lint:eslint -- --fix",
"format": "npm run format:prettier && npm run format:eslint",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"bin": {
"kodemod": "./bin/kodemod"
},
"files": [
"bin/",
"src/",
"transforms/*.js"
],
"dependencies": {
"@kuscamara/cli-helper": "^1.0.5",
"dargs": "^8.0.0",
"execa": "^5.0.0",
"globby": "^11.0.0",
"inquirer-path": "^1.0.0-beta5",
"jscodeshift": "^0.13.0"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-object-rest-spread": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.0.0",
"commitizen": "^4.1.2",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^24.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.0.4",
"jest": "^27.0.0",
"lint-staged": "^10.0.3",
"prettier": "^2.0.5",
"semantic-release": "^17.0.0"
},
"husky": {
"hooks": {
"pre-push": "npm t",
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,md}": [
"npm run format"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/git"
],
"branch": "master",
"tagFormat": "${version}"
},
"jest": {
"globals": {
"baseDir": "../"
},
"testEnvironment": "node",
"roots": [
"transforms"
],
"collectCoverage": true
},
"engines": {
"node": ">=10.13.0"
}
}