-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
131 lines (131 loc) · 3.91 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "@codemorph/core",
"workspaces": [
"src/rz/angular"
],
"version": "1.6.5",
"description": "Code Morph is an extensible, easy to understand, easy contribute, easy to use Codemod library.",
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"scripts": {
"clean": "rm -rf ./lib",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv lib/esm/index.js lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"babel:build": "babel lib/cjs --out-dir lib/cjs && babel node_modules/angular-html-parser --out-dir node_modules/angular-html-parser",
"prepack": "npm run build",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --runInBand --config jest.config.js"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/razroo/codemorph"
},
"keywords": [
"razroo",
"codemod"
],
"publishConfig": {
"access": "public"
},
"author": "Razroo",
"license": "RAZROO",
"bugs": {
"url": "https://github.com/razroo/codemorph/issues"
},
"homepage": "https://github.com/razroo/codemorph#readme",
"devDependencies": {
"@angular-devkit/architect": "~0.1300.0",
"@angular-devkit/build-angular": "~13.0.0",
"@angular-devkit/build-optimizer": "~0.1300.0",
"@angular-devkit/build-webpack": "~0.1300.0",
"@angular-devkit/core": "~13.0.0",
"@angular-devkit/schematics": "~13.0.0",
"@angular-eslint/eslint-plugin": "~13.0.1",
"@angular-eslint/eslint-plugin-template": "~13.0.1",
"@angular-eslint/template-parser": "~13.0.1",
"@angular/cli": "~13.0.0",
"@angular/common": "^13.0.0",
"@angular/compiler": "^13.0.0",
"@angular/compiler-cli": "^13.0.0",
"@angular/core": "^13.0.0",
"@angular/forms": "^13.0.0",
"@angular/platform-browser": "^13.0.0",
"@angular/platform-browser-dynamic": "^13.0.0",
"@angular/router": "^13.0.0",
"@angular/service-worker": "^13.0.0",
"@angular/upgrade": "^13.0.0",
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.6",
"@types/json-pointer": "^1.0.31",
"@types/lodash": "^4.14.192",
"@types/prettier": "2.7.3",
"@types/resolve": "^1.20.2",
"@types/scss-parser": "^1.0.1",
"@types/tinycolor2": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-jest": "^29.7.0",
"eslint": "^7.11.0",
"eslint-plugin-jest": "^24.1.0",
"rxjs": "^6.5.4",
"rxjs-for-await": "0.0.2",
"ts-jest": "^29.1.1",
"tsup": "^6.2.3",
"typescript": "^4.0.3",
"yargs-parser": "20.0.0"
},
"dependencies": {
"@ctrl/tinycolor": "^3.4.1",
"@types/ejs": "^3.1.2",
"angular-html-parser": "1.8.0",
"ejs": "^3.1.9",
"fast-glob": "3.2.7",
"glob": "^8.0.3",
"hast-util-from-parse5": "6.0.1",
"hast-util-to-html": "7.1.3",
"jest": "^29.7.0",
"jsdom": "^22.1.0",
"json-pointer": "^0.6.2",
"json-to-ast": "^2.1.0",
"jsonc-parser": "3.0.0",
"jsonpath-plus": "^6.0.1",
"lodash": "^4.17.21",
"minimatch": "^9.0.3",
"parse5": "^6.0.1",
"path": "^0.12.7",
"prettier": "^2.3.0",
"query-ast": "^1.0.4",
"resolve": "^1.22.2",
"scss-parser": "^1.0.5",
"tmp": "~0.2.1",
"ts-morph": "^19.0.0",
"tslib": "^2.3.0",
"unist-util-visit": "2.0.3",
"unist-util-visit-parents": "3.1.1"
},
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"files": [
"lib/**/*"
]
}