-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
89 lines (89 loc) · 2.02 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
{
"name": "codemod-cli",
"version": "3.2.0",
"description": "a command line tool for generating, testing, and publishing codemods",
"keywords": [
"cli",
"codemod"
],
"homepage": "https://github.com/rwjblue/codemod-cli#readme",
"bugs": {
"url": "https://github.com/rwjblue/codemod-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rwjblue/codemod-cli.git"
},
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"main": "src/index.js",
"bin": {
"codemod-cli": "./bin/cli.js"
},
"directories": {
"test": "tests"
},
"files": [
"src",
"bin",
"commands"
],
"scripts": {
"lint": "eslint .",
"lint:js": "eslint .",
"release": "release-it",
"test": "qunit tests/**/*-test.js"
},
"dependencies": {
"@babel/parser": "^7.16.8",
"chalk": "^4.1.1",
"common-tags": "^1.8.2",
"ember-template-recast": "^4.1.4",
"execa": "^5.0.0",
"fs-extra": "^10.0.0",
"globby": "^11.0.2",
"import-cwd": "^3.0.0",
"import-local": "^3.1.0",
"jscodeshift": "^0.13.1",
"latest-version": "^5.1.0",
"pkg-up": "^3.1.0",
"recast": "^0.20.5",
"yargs": "^17.3.1"
},
"devDependencies": {
"broccoli-test-helper": "^2.0.0",
"coveralls": "^3.1.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"qunit": "^2.17.2",
"release-it": "^14.12.1",
"release-it-lerna-changelog": "^4.0.1",
"require-so-slow": "^2.0.5",
"walk-sync": "^3.0.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}