-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
96 lines (96 loc) · 2.76 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
90
91
92
93
94
95
96
{
"name": "ember-native-class-codemod",
"version": "4.1.1",
"description": "Codemods for transforming ember app code to native class syntax with decorators.",
"keywords": [
"codemod-cli"
],
"homepage": "https://github.com/ember-codemods/ember-native-class-codemod#readme",
"bugs": {
"url": "https://github.com/ember-codemods/ember-native-class-codemod/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-codemods/ember-native-class-codemod.git"
},
"license": "MIT",
"author": "",
"main": ".eslintrc.js",
"bin": {
"ember-native-class-codemod": "./bin/cli.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"files": [
"/bin",
"/lib",
"/transforms/helpers/**/*.js",
"/transforms/ember-object/index.js"
],
"scripts": {
"build": "tsc",
"clean": "tsc --build --clean && git checkout test/fixtures",
"lint": "concurrently \"npm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"npm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:prettier": "prettier --check .",
"lint:prettier:fix": "prettier --write .",
"lint:ts": "tsc --noEmit",
"prepublishOnly": "pnpm build",
"postpublish": "pnpm clean",
"test": "pnpm build && codemod-cli test && node ./test/run-test.js && pnpm clean",
"update-docs": "codemod-cli update-docs"
},
"dependencies": {
"@babel/parser": "^7.21.4",
"camelcase": "^6.3.0",
"codemod-cli": "^3.2.0",
"cosmiconfig": "^7.0.0",
"deepmerge-ts": "^4.3.0",
"ember-codemods-telemetry-helpers": "^3.0.0",
"jscodeshift": "^0.11.0",
"minimatch": "^7.4.6",
"winston": "^3.8.2",
"zod": "^3.21.4"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.21.4",
"@jest/globals": "^29.5.0",
"@tsconfig/node12": "^1.0.11",
"@types/babel__core": "^7.20.5",
"@types/glob": "^8.1.0",
"@types/jscodeshift": "^0.11.6",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"ast-types": "^0.14.2",
"concurrently": "^8.0.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-jsdoc": "43.0.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-unicorn": "^46.0.0",
"execa": "^5.1.1",
"glob": "^8.1.0",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"release-plan": "^0.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"engines": {
"node": "16.* || 18.* || >= 20.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"volta": {
"node": "16.20.2",
"yarn": "1.22.21"
}
}