-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
89 lines (89 loc) · 2.82 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": "ember-no-implicit-this-codemod",
"version": "3.0.0",
"description": "Codemods for transforming variable usage to be prefixed with `this`, when appropriate",
"keywords": [
"codemod-cli"
],
"homepage": "https://github.com/ember-codemods/ember-no-implicit-this-codemod#readme",
"bugs": {
"url": "https://github.com/ember-codemods/ember-no-implicit-this-codemod"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-codemods/ember-no-implicit-this-codemod"
},
"license": "MIT",
"author": "",
"bin": {
"ember-no-implicit-this-codemod": "./bin/cli.js"
},
"files": [
"/bin",
"/helpers/**/*.js",
"/transforms/no-implicit-this/index.js",
"/transforms/no-implicit-this/helpers/**/*.js"
],
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean",
"codemod": "jscodeshift -t ./transforms/no-implicit-this/index.js --extensions js,ts,hbs --run-in-band",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"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 ",
"debug:codemod:not-working": "node --inspect-brk ./bin/cli",
"debug:telemetry": "node --inspect-brk ./bin/telemetry.js",
"lint:js": "eslint .",
"lint:ts": "tsc --noEmit",
"prepublishOnly": "yarn build",
"release": "release-it",
"test": "jest",
"pretest:integration": "yarn build",
"test:integration": "ts-node ./test/run-test.ts",
"update-docs": "codemod-cli update-docs"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/transforms/**/test.{js,ts}"
]
},
"dependencies": {
"@babel/parser": "^7.23.6",
"codemod-cli": "^3.2.0",
"debug": "^4.1.1",
"ember-codemods-telemetry-helpers": "^3.0.0",
"ember-template-recast": "^6.1.4",
"zod": "^3.22.4"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.4",
"@tsconfig/strictest": "^2.0.1",
"@types/babel__core": "^7.20.5",
"@types/chalk": "^2.2.0",
"@types/common-tags": "^1.8.0",
"@types/debug": "^4.1.8",
"@types/jscodeshift": "^0.11.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"ast-types": "^0.14.2",
"babel-plugin-htmlbars-inline-precompile": "^3.0.1",
"chalk": "^4.1.1",
"common-tags": "^1.8.0",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"execa": "^3.4.0",
"jest": "^29.1.0",
"prettier": "^1.19.1",
"release-plan": "^0.6.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "~5.0.4"
},
"engines": {
"node": "16.* || 18.* || >= 20"
}
}