|
2 | 2 | "name": "ember-no-implicit-this-codemod", |
3 | 3 | "version": "2.1.0", |
4 | 4 | "description": "Codemods for transforming variable usage to be prefixed with `this`, when appropriate", |
5 | | - "license": "MIT", |
| 5 | + "keywords": [ |
| 6 | + "codemod-cli" |
| 7 | + ], |
| 8 | + "homepage": "https://github.com/ember-codemods/ember-no-implicit-this-codemod#readme", |
| 9 | + "bugs": { |
| 10 | + "url": "https://github.com/ember-codemods/ember-no-implicit-this-codemod" |
| 11 | + }, |
6 | 12 | "repository": { |
7 | 13 | "type": "git", |
8 | 14 | "url": "git+https://github.com/ember-codemods/ember-no-implicit-this-codemod" |
9 | 15 | }, |
10 | | - "bugs": { |
11 | | - "url": "https://github.com/ember-codemods/ember-no-implicit-this-codemod" |
12 | | - }, |
13 | | - "homepage": "https://github.com/ember-codemods/ember-no-implicit-this-codemod#readme", |
| 16 | + "license": "MIT", |
14 | 17 | "author": "", |
| 18 | + "bin": { |
| 19 | + "ember-no-implicit-this-codemod": "./bin/cli.js" |
| 20 | + }, |
15 | 21 | "scripts": { |
16 | | - "release": "release-it", |
17 | | - "test": "jest", |
18 | | - "test:integration": "ts-node ./test/run-test.ts", |
19 | | - "update-docs": "codemod-cli update-docs", |
| 22 | + "codemod": "jscodeshift -t ./transforms/no-implicit-this/index.js --extensions js,ts,hbs --run-in-band", |
20 | 23 | "coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls", |
21 | | - "lint:js": "eslint .", |
22 | | - "debug:telemetry": "node --inspect-brk ./bin/telemetry.js", |
| 24 | + "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 ", |
23 | 25 | "debug:codemod:not-working": "node --inspect-brk ./bin/cli", |
24 | | - "codemod": "jscodeshift -t ./transforms/no-implicit-this/index.js --extensions js,ts,hbs --run-in-band", |
25 | | - "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 " |
| 26 | + "debug:telemetry": "node --inspect-brk ./bin/telemetry.js", |
| 27 | + "lint:js": "eslint .", |
| 28 | + "test": "jest", |
| 29 | + "test:integration": "ts-node ./test/run-test.ts", |
| 30 | + "update-docs": "codemod-cli update-docs" |
26 | 31 | }, |
27 | | - "bin": { |
28 | | - "ember-no-implicit-this-codemod": "./bin/cli.js" |
| 32 | + "jest": { |
| 33 | + "testEnvironment": "node", |
| 34 | + "testMatch": [ |
| 35 | + "<rootDir>/transforms/**/test.js" |
| 36 | + ] |
29 | 37 | }, |
30 | | - "keywords": [ |
31 | | - "codemod-cli" |
32 | | - ], |
33 | 38 | "dependencies": { |
34 | 39 | "codemod-cli": "^2.1.0", |
35 | 40 | "debug": "^4.1.1", |
|
52 | 57 | "execa": "^3.4.0", |
53 | 58 | "jest": "^26.6.3", |
54 | 59 | "prettier": "^1.19.1", |
55 | | - "release-it": "^14.6.2", |
56 | | - "release-it-lerna-changelog": "^3.1.0", |
| 60 | + "release-plan": "^0.6.0", |
57 | 61 | "ts-node": "^8.10.2", |
58 | 62 | "typescript": "~3.9.7" |
59 | 63 | }, |
60 | 64 | "engines": { |
61 | 65 | "node": "16.* || 18.* || >= 20" |
62 | | - }, |
63 | | - "jest": { |
64 | | - "testEnvironment": "node", |
65 | | - "testMatch": [ |
66 | | - "<rootDir>/transforms/**/test.js" |
67 | | - ] |
68 | | - }, |
69 | | - "publishConfig": { |
70 | | - "registry": "https://registry.npmjs.org" |
71 | | - }, |
72 | | - "release-it": { |
73 | | - "hooks": { |
74 | | - "before:release": "yarn update-docs" |
75 | | - }, |
76 | | - "plugins": { |
77 | | - "release-it-lerna-changelog": { |
78 | | - "infile": "CHANGELOG.md" |
79 | | - } |
80 | | - }, |
81 | | - "git": { |
82 | | - "tagName": "v${version}" |
83 | | - }, |
84 | | - "github": { |
85 | | - "release": true |
86 | | - } |
87 | 66 | } |
88 | 67 | } |
0 commit comments