-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.1 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
{
"name": "ember-codemod-v1-to-v2",
"version": "1.7.1",
"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:prepare": "lerna-changelog",
"release:publish": "pnpm publish",
"test": "./build.sh --test && mt dist-for-testing --quiet"
},
"dependencies": {
"@codemod-utils/blueprints": "^1.1.9",
"@codemod-utils/files": "^2.0.8",
"@codemod-utils/json": "^1.1.13",
"strip-json-comments": "^5.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@codemod-utils/tests": "^1.1.11",
"@ijlee2-frontend-configs/eslint-config-node": "^0.2.1",
"@ijlee2-frontend-configs/prettier": "^0.2.0",
"@ijlee2-frontend-configs/typescript": "^0.3.0",
"@sondr3/minitest": "^0.1.2",
"@types/node": "^18.19.75",
"@types/yargs": "^17.0.33",
"concurrently": "^9.1.2",
"eslint": "^9.20.0",
"lerna-changelog": "^2.2.0",
"prettier": "^3.5.0",
"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": {
"get-tsconfig": "4.7.3"
}
}
}