-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.45 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-codemod-v1-to-v2",
"version": "1.7.0",
"description": "Codemod to convert Ember addons to v2 addon format",
"keywords": [
"codemod",
"ember-codemod",
"ember-octane",
"ember-polaris",
"ember-v2-addon",
"emberjs",
"embroider"
],
"repository": {
"type": "git",
"url": "https://github.com/ijlee2/ember-codemod-v1-to-v2.git"
},
"license": "MIT",
"author": "Isaac J. Lee",
"type": "module",
"main": "dist/src/index.js",
"bin": "dist/bin/ember-codemod-v1-to-v2.js",
"directories": {
"test": "tests"
},
"files": [
"dist"
],
"scripts": {
"build": "./build.sh --production",
"lint": "concurrently 'pnpm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'pnpm:lint:*:fix' --names 'fix:'",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "tsc --noEmit",
"prepare": "pnpm build",
"release:changelog": "lerna-changelog",
"release:publish": "pnpm publish",
"test": "./build.sh --test && mt dist-for-testing --quiet"
},
"dependencies": {
"@codemod-utils/blueprints": "^1.1.6",
"@codemod-utils/files": "^2.0.5",
"@codemod-utils/json": "^1.1.10",
"strip-json-comments": "^5.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@codemod-utils/tests": "^1.1.8",
"@sondr3/minitest": "^0.1.2",
"@tsconfig/node18": "^18.2.4",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^18.19.70",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"concurrently": "^9.1.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"lerna-changelog": "^2.2.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.* || >= 20"
},
"changelog": {
"labels": {
"breaking": "Breaking Change",
"bug": "Bug Fix",
"enhance: code": "Enhancement",
"enhance: dependency": "Internal",
"enhance: documentation": "Documentation"
}
},
"pnpm": {
"overrides": {
"[email protected]>tsconfig-paths": "^4.2.0"
}
}
}