-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
{
"name": "blueprints-v2-addon",
"version": "0.5.0",
"private": true,
"description": "Blueprints for v2 addons",
"keywords": [
"codemod",
"ember-codemod",
"emberjs"
],
"repository": {
"type": "git",
"url": "https://github.com/ijlee2/embroider-toolbox.git"
},
"license": "MIT",
"author": "Isaac J. Lee",
"type": "module",
"main": "dist/src/index.js",
"bin": "dist/bin/blueprints-v2-addon.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",
"test": "./build.sh --test && mt dist-for-testing --quiet",
"update-blueprints": "./update-blueprints.js",
"update-test-fixtures": "./update-test-fixtures.sh"
},
"dependencies": {
"@codemod-utils/ast-javascript": "^1.2.9",
"@codemod-utils/blueprints": "^1.1.6",
"@codemod-utils/ember": "^2.0.1",
"@codemod-utils/files": "^2.0.5",
"@codemod-utils/json": "^1.1.10",
"yargs": "^17.7.2"
},
"devDependencies": {
"@codemod-utils/tests": "^1.1.8",
"@shared-configs/eslint-config-node": "workspace:*",
"@shared-configs/prettier": "workspace:*",
"@shared-configs/typescript": "workspace:*",
"@sondr3/minitest": "^0.1.2",
"@types/node": "^18.19.70",
"@types/yargs": "^17.0.33",
"concurrently": "^9.1.2",
"eslint": "^8.57.1",
"git-diff-apply": "^6.0.6",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
},
"engines": {
"node": "18.* || >= 20"
}
}