-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.44 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.44 KB
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
{
"name": "ember-no-implicit-this-codemod",
"version": "2.1.0",
"description": "Codemods for transforming variable usage to be prefixed with `this`, when appropriate",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ember-codemods/ember-no-implicit-this-codemod"
},
"bugs": {
"url": "https://github.com/ember-codemods/ember-no-implicit-this-codemod"
},
"homepage": "https://github.com/ember-codemods/ember-no-implicit-this-codemod#readme",
"author": "",
"files": [
"/bin",
"/helpers/**/*.js",
"/transforms/no-implicit-this/index.js",
"/transforms/no-implicit-this/helpers/**/*.js"
],
"scripts": {
"release": "release-it",
"prepublishOnly": "yarn build",
"build": "tsc",
"clean": "tsc --build --clean",
"pretest": "yarn build",
"test": "jest",
"pretest:integration": "yarn build",
"test:integration": "node ./test/run-test.js",
"test:integration:embroider": "yarn test:integration --embroider",
"test:integration:runtime": "yarn test:integration --runtime",
"update-docs": "codemod-cli update-docs",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"lint:js": "eslint .",
"lint:ts": "tsc --noEmit",
"debug:telemetry": "node --inspect-brk ./bin/telemetry.js",
"debug:codemod:not-working": "node --inspect-brk ./bin/cli",
"codemod": "jscodeshift -t ./transforms/no-implicit-this/index.js --extensions js,ts,hbs --run-in-band",
"debug:codemod": "node --inspect-brk node_modules/jscodeshift/bin/jscodeshift.js -t ./transforms/no-implicit-this/index.js --run-in-band --extensions js,ts,hbs "
},
"bin": {
"ember-no-implicit-this-codemod": "./bin/cli.js"
},
"keywords": [
"codemod-cli"
],
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@embroider/core": "^3.0.0",
"codemod-cli": "^3.2.0",
"debug": "^4.1.1",
"ember-codemods-telemetry-helpers": "^3.0.0",
"ember-template-recast": "^6.1.4",
"yargs": "^17.7.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@embroider/compat": "^3.0.0",
"@embroider/webpack": "^3.0.0",
"@jest/globals": "^29.5.0",
"@tsconfig/node16": "^1.0.4",
"@tsconfig/strictest": "^2.0.1",
"@types/chalk": "^2.2.0",
"@types/common-tags": "^1.8.0",
"@types/debug": "^4.1.8",
"@types/jscodeshift": "^0.11.6",
"@types/node": "^20.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"babel-plugin-htmlbars-inline-precompile": "^3.0.1",
"chalk": "^4.1.1",
"common-tags": "^1.8.0",
"coveralls": "^3.1.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^3.4.0",
"jest": "^29.1.0",
"prettier": "^2.8.8",
"release-it": "^14.6.2",
"release-it-lerna-changelog": "^3.1.0",
"typescript": "~5.0.4",
"webpack": "^5.84.1"
},
"engines": {
"node": "16.* || 18.* || >= 20"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/transforms/**/test.js"
]
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"release-it": {
"hooks": {
"before:release": "yarn update-docs"
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
}
}